npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

get-global-paths

2.0.0

@kevva

npmHomeRepoSnykSocket
Downloads:108
$ npm install get-global-paths
DailyWeeklyMonthlyYearly

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