• File: index.js
  • Full Path: /home6/laduliya/test.mydthpay.com/node_modules/has-yarn/index.js
  • Date Modified: 10/26/1985 11:45 AM
  • File size: 268 bytes
  • MIME-type: text/plain
  • Charset: utf-8
'use strict';
const path = require('path');
const fs = require('fs');

const hasYarn = (cwd = process.cwd()) => fs.existsSync(path.resolve(cwd, 'yarn.lock'));

module.exports = hasYarn;
// TODO: Remove this for the next major release
module.exports.default = hasYarn;