super-trailing-slash
v1.0.2
Published
Add or remove trailing slash
Downloads
135
Maintainers
Readme
Installation
Node.js
npm install super-trailing-slash --save
Example
Add trailing slash
const slash = require('super-trailing-slash');
slash.add('path/to/file'); //=> path/to/file/
slash.add('\\path\\to\\file'); //=> \path\to\file\
// Adds only if necessary
slash.add('path/to/file/'); //=> path/to/file/
Remove trailing slash
slash.remove('path/to/file/'); //=> path/to/file
slash.remove('\\path\\to\\file\\'); //=> \path\to\file
// Removes only if necessary
slash.remove('path/to/file'); //=> path/to/file
API
See full documentation
Changelog
You can view the changelog here
License
super-trailing-slash is open-sourced software licensed under the MIT license
Author
Fabio Ricali