57e811e38322f/app/node_modules/string-width">string-width 30f7226d9a first commit пре 3 година strip-ansi 30f7226d9a first commit пре 3 година sucrase 30f7226d9a first commit пре 3 година supports-preserve-symlinks-flag 30f7226d9a first commit пре 3 година tailwind-color-palette 30f7226d9a first commit пре 3 година tailwindcss 30f7226d9a first commit пре 3 година thenify 30f7226d9a first commit пре 3 година thenify-all 30f7226d9a first commit пре 3 година to-regex-range 30f7226d9a first commit пре 3 година tr46 30f7226d9a first commit пре 3 година ts-interface-checker 30f7226d9a first commit пре 3 година uglify-js 30f7226d9a first commit пре 3 година underscore 30f7226d9a first commit пре 3 година upper-case 30f7226d9a first commit пре 3 година util-deprecate 30f7226d9a first commit пре 3 година valid-data-url 30f7226d9a first commit пре 3 година web-resource-inliner 30f7226d9a first commit пре 3 година webidl-conversions 30f7226d9a first commit пре 3 година whatwg-url 30f7226d9a first commit пре 3 година wrap-ansi 30f7226d9a first commit пре 3 година wrappy 30f7226d9a first commit пре 3 година y18n 30f7226d9a first commit пре 3 година yallist 30f7226d9a first commit пре 3 година yaml 30f7226d9a first commit пре 3 година yargs 30f7226d9a first commit пре 3 година yargs-parser 30f7226d9a first commit пре 3 година .yarn-integrity 30f7226d9a first commit пре 3 година tum/tmt_learning - Gogs: Simplico Git Service

Sin descripción

Prach Pongpanich 6f337d0a21 install tailwind alpine daisyui %!s(int64=3) %!d(string=hace) años
..
LICENSE 6f337d0a21 install tailwind alpine daisyui %!s(int64=3) %!d(string=hace) años
README.md 6f337d0a21 install tailwind alpine daisyui %!s(int64=3) %!d(string=hace) años
index.js 6f337d0a21 install tailwind alpine daisyui %!s(int64=3) %!d(string=hace) años
package.json 6f337d0a21 install tailwind alpine daisyui %!s(int64=3) %!d(string=hace) años

README.md

path-parse Build Status

Node.js path.parse(pathString) ponyfill.

Install

$ npm install --save path-parse

Usage

var pathParse = require('path-parse');

pathParse('/home/user/dir/file.txt');
//=> {
//       root : "/",
//       dir : "/home/user/dir",
//       base : "file.txt",
//       ext : ".txt",
//       name : "file"
//   }

API

See path.parse(pathString) docs.

pathParse(path)

pathParse.posix(path)

The Posix specific version.

pathParse.win32(path)

The Windows specific version.

License

MIT © Javier Blanco