lix-website/themes/lix/assets/bootstrap/node_modules/is-installed-globally/index.js

16 lines
342 B
JavaScript
Raw Normal View History

2024-04-27 03:39:10 +00:00
'use strict';
const fs = require('fs');
const globalDirs = require('global-dirs');
const isPathInside = require('is-path-inside');
module.exports = (() => {
try {
return (
isPathInside(__dirname, globalDirs.yarn.packages) ||
isPathInside(__dirname, fs.realpathSync(globalDirs.npm.packages))
);
} catch {
return false;
}
})();