zeptomatch-unescape
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

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 --save zeptomatch-unescape

Usage

import unescape from 'zeptomatch-unescape';

// Remove escapes from a glob

unescape ( 'foo*bar?' ); //=> 'foo*bar?'
unescape ( 'foo\\*bar\\?' ); //=> 'foo*bar?'

License

MIT © Fabio Spampinato

Dependencies (0)

    Dev Dependencies (3)

    Package Sidebar

    Install

    npm i zeptomatch-unescape

    Weekly Downloads

    12,161

    Version

    1.0.0

    License

    none

    Unpacked Size

    3.29 kB

    Total Files

    9

    Last publish

    Collaborators

    • fabiospampinato