1.0.2 • Published 6 years ago

super-trailing-slash v1.0.2

Weekly downloads
49
License
MIT
Repository
github
Last release
6 years ago

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