zeptomatch-unescape

A little utility for removing escape sequences from a glob.

MIT 2 个版本
安装
npm install zeptomatch-unescape
yarn add zeptomatch-unescape
pnpm add zeptomatch-unescape
bun add zeptomatch-unescape
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-unescape

Usage

import unescape from 'zeptomatch-unescape';

// Removing escapes from a glob

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

License

MIT © Fabio Spampinato

版本列表
1.0.1 2025-03-05
1.0.0 2024-03-29