Package Exports
- extra-path
Readme
Standard utility methods for path.
📦 Node.js,
🌐 Web,
📜 Files,
📰 Docs.
This package is available in both Node.js and Web formats. The web format
is exposed as extra_path
standalone variable and can be loaded from
jsDelivr CDN.
Stability: Experimental.
const path = require('extra-path');
function main() {
path.filename('/home/user/file+name.txt');
// → file+name
path.symbolname('/home/user/file+name.txt');
// → file_name
path.symbolname('/home/user/file+name.txt');
// → file-name
}
main();
Index
Property | Description |
---|---|
filename | Get file name without extension. |
symbolname | Get symbol name for file. |
keywordname | Get keyword name for file. |