extra-path.web 1.1.40
Install from the command line:
Learn more about npm packages
$ npm install @nodef/extra-path.web@1.1.40
Install via package.json:
"@nodef/extra-path.web": "1.1.40"
About this version
Useful additions to inbuilt path module.
π¦ Node.js,
π Web,
π Files,
π° Docs,
π Wiki.
This package is available in Node.js and Web formats. To use it on the web,
simply use the extra_path
global variable after loading with a <script>
tag from the jsDelivr CDN.
Stability: Experimental.
const xpath = require('extra-path');
function main() {
xpath.filename('/home/user/file+name.txt');
// β 'file+name'
xpath.symbolname('/home/user/file+name.txt');
// β 'file_name'
xpath.keywordname('/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. |