extra-path 1.1.10
Install from the command line:
Learn more about npm packages
$ npm install @nodef/extra-path@1.1.10
Install via package.json:
"@nodef/extra-path": "1.1.10"
About this version
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();
Property | Description |
---|---|
filename | Get file name without extension. |
symbolname | Get symbol name for file. |
keywordname | Get keyword name for file. |