Your IP : 216.73.216.91


Current Path : /var/node/inatote/Inatote-Backend/node_modules/is-yarn-global/
Upload File :
Current File : /var/node/inatote/Inatote-Backend/node_modules/is-yarn-global/index.js

'use strict';

const path = require('path');

module.exports = function () {
	const isWindows = process.platform === 'win32';
	const yarnPath = isWindows ? path.join('Yarn', 'config', 'global') : path.join('.config', 'yarn', 'global');
	if (__dirname.includes(yarnPath)) {
		return true;
	}
	return false;
};