Socket
Socket
Sign inDemoInstall

glob-slasher

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

glob-slasher

Prefix an object (key/values) of globs with a slash and normalize. Supports negated globs too. Glob version of slasher module


Version published
Weekly downloads
448K
increased by5.48%
Maintainers
1
Weekly downloads
 
Created
Source

glob-slasher

Prefix an object (key/values) of globs with a slash and normalize. Supports negated globs too. Glob version of slasher module

Install

npm install glob-slasher --save

Usage

Strings

var slasher = require('glob-slasher');

var pathname = '!**/something';
console.log(slasher(pathname)); // OUTPUTS: '!/**/something'

Arrays

var slasher = require('glob-slasher');

var globs = ['!**/something', '/here'];
console.log(slasher(globs)); // OUTPUTS: ['!/**/something', '/here']

Objects

var slasher = require('glob-slasher');

var globs = {
  '**/some/route': 'index.html'
};
console.log(slasher(globs));

// OUTPUTS:
{
  '/**/some/route': '/index.html'
}

Run Tests

npm install
npm test

Keywords

FAQs

Package last updated on 18 Nov 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc