• File: index.js
  • Full Path: /home6/laduliya/test.mydthpay.com/node_modules/is-npm/index.js
  • Date Modified: 10/26/1985 11:45 AM
  • File size: 309 bytes
  • MIME-type: text/plain
  • Charset: utf-8
'use strict';

const userAgent = process.env.npm_config_user_agent;
const isYarn = Boolean(userAgent && userAgent.startsWith('yarn'));
const isNpm = Boolean(userAgent && userAgent.startsWith('npm'));

module.exports.isNpmOrYarn = isNpm || isYarn;
module.exports.isNpm = isNpm;
module.exports.isYarn = isYarn;