No Description
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 years ago
..
.npmignore 1001 update 2 years ago
LICENSE 1001 update 2 years ago
README.md 1001 update 2 years ago
index.js 1001 update 2 years ago
package.json 1001 update 2 years ago
test.js 1001 update 2 years ago

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