benji.monster/node_modules/is-installed-globally/index.js

6 lines
226 B
JavaScript
Raw Normal View History

2020-01-03 20:48:09 +00:00
'use strict';
const globalDirs = require('global-dirs');
const isPathInside = require('is-path-inside');
module.exports = isPathInside(__dirname, globalDirs.yarn.packages) || isPathInside(__dirname, globalDirs.npm.packages);