2.0.0 • Published 8 years ago

get-global-paths v2.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

get-global-paths Build Status

Get all global paths from an array

Install

$ npm install --save get-global-paths

Usage

const getGlobalPaths = require('get-global-paths');

const paths = [
	'/home/johndoe',
	'/usr/bin',
	'/usr/local/bin'
];

getGlobalPaths(paths);
//=> ['/usr/bin', '/usr/local/bin']

API

getGlobalPaths(paths)

Type: Array

An array of paths to match against.

License

MIT © Kevin Mårtensson