zeptomatch-unescape
v1.0.1
Published
A little utility for removing escape sequences from a glob.
Readme
Zeptomatch Unescape
A little utility for removing escape sequences from a glob.
Removing escape sequences is useful in combination with zeptomatch-is-static to handle fully-static globs specially.
Install
npm install zeptomatch-unescapeUsage
import unescape from 'zeptomatch-unescape';
// Removing escapes from a glob
unescape ( 'foo*bar?' ); //=> 'foo*bar?'
unescape ( 'foo\\*bar\\?' ); //=> 'foo*bar?'License
MIT © Fabio Spampinato
