blob: 34412202f14d0723a77faa1be201e640cd479413 [file] [log] [blame]
'use strict';
const path = require('path');
const pkgUp = require('./pkgUp').default;
exports.__esModule = true;
exports.default = function (cwd) {
const fp = pkgUp({ cwd });
return fp ? path.dirname(fp) : null;
};