Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
dienianindya d731c0e823 1001 update 2 anos atrás
..
.npmignore 1001 update 2 anos atrás
LICENSE 1001 update 2 anos atrás
README.md 1001 update 2 anos atrás
index.js 1001 update 2 anos atrás
package.json 1001 update 2 anos atrás
test.js 1001 update 2 anos atrás

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