/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ext/node/polyfills/path/_interface.ts
31 строка
676 B
Bartek Iwańczuk
perf(ext/node): convert 62 more polyfill files to lazy-loaded scripts (#33835)
05 май 2026, 09:49
Не верифицирован
05 май 2026, 09:49
88320d6
Код
Авторство
О чём код?
// Copyright 2018-2026 the Deno authors. MIT license. /** * A parsed path object generated by path.parse() or consumed by path.format(). */ (function () { interface ParsedPath { /** * The root of the path such as '/' or 'c:\' */ root: string; /** * The full directory path such as '/home/user/dir' or 'c:\path\dir' */ dir: string; /** * The file name including extension (if any) such as 'index.html' */ base: string; /** * The file extension (if any) such as '.html' */ ext: string; /** * The file name without extension (if any) such as 'index' */ name: string; } type FormatInputPathObject = Partial<ParsedPath>; })();