Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dienianindya d731c0e823 1001 update 2 vuotta sitten
..
.npmignore 1001 update 2 vuotta sitten
LICENSE 1001 update 2 vuotta sitten
README.md 1001 update 2 vuotta sitten
index.js 1001 update 2 vuotta sitten
package.json 1001 update 2 vuotta sitten
test.js 1001 update 2 vuotta sitten

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