You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rdrew
1440706ce3
|
6 years ago | |
---|---|---|
.. | ||
index.js | 6 years ago | |
license | 6 years ago | |
package.json | 6 years ago | |
readme.md | 6 years ago |
readme.md
filename-reserved-regex
Regular expression for matching reserved filename characters
On Unix-like systems /
is reserved and <>:"/\|?*
on Windows.
Install
$ npm install --save filename-reserved-regex
Usage
var filenameReservedRegex = require('filename-reserved-regex');
filenameReservedRegex().test('foo/bar');
//=> false
filenameReservedRegex().test('foo-bar');
//=> true
'foo/bar'.replace(filenameReservedRegex(), '!');
//=> foo!bar
License
MIT © Sindre Sorhus