kuamail/node_modules/path-parse
Kavi f1a2d385f3 feat(kuamail): Gmail-exact mail client SPA — initial release
React 19 + Vite + TanStack Router/Query + Tailwind. Gmail-exact UI:
- ThreadRow: 40px density, hover action icons, unread stripe
- Sidebar: compose button, folder list, labels
- MessageCard: expandable headers, reply/forward
- MessageReader: full Gmail toolbar
- SearchBar: pill with filter icon
- Production: nginx container with /api proxy to api.mail.kua.cl

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-22 03:08:44 -04:00
..
LICENSE feat(kuamail): Gmail-exact mail client SPA — initial release 2026-04-22 03:08:44 -04:00
README.md feat(kuamail): Gmail-exact mail client SPA — initial release 2026-04-22 03:08:44 -04:00
index.js feat(kuamail): Gmail-exact mail client SPA — initial release 2026-04-22 03:08:44 -04:00
package.json feat(kuamail): Gmail-exact mail client SPA — initial release 2026-04-22 03:08:44 -04:00

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