Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
dienianindya d731c0e823 1001 update il y a 2 ans
..
.npmignore 1001 update il y a 2 ans
LICENSE 1001 update il y a 2 ans
README.md 1001 update il y a 2 ans
index.js 1001 update il y a 2 ans
package.json 1001 update il y a 2 ans
test.js 1001 update il y a 2 ans

README.md

glob-slash

Prefix globs with a slash and normalize. Supports negated globs too.

Install

npm install glob-slash --save

Usage

var globSlash = require('glob-slash');

console.log(globSlash('!**/testing')) // OUTPUTS: !/**/testing
console.log(globSlash('another-test//**')) // OUTPUTS: /another-test/**

Run Tests

npm install
npm test