summaryrefslogtreecommitdiff
path: root/chromium/third_party/devtools-frontend/src/node_modules/eslint-module-utils/pkgUp.js
blob: f73e3f7b252da6c510bf36b3c13030fc9304f755 (plain)
1
2
3
4
5
6
7
8
'use strict';
exports.__esModule = true;

const findUp = require('find-up');

exports.default = function pkgUp(opts) {
  return findUp.sync('package.json', opts);
};