frontend/.pnpm-store/v3/files/b3/7d34b1982d299e45eaf7baedd7b12184262d63d5ae1cbadece7772691088a14aeb35e780ebcb1f790277fb507262075b1e789db42440b817475c6e873f871d

10 lines
268 B
Plaintext

'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;