get-global-paths

Get all global paths from an array

Usage no npm install needed!

<script type="module">
  import getGlobalPaths from 'https://cdn.skypack.dev/get-global-paths';
</script>

README

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