Sign in
chromium
/
devtools
/
devtools-frontend
/
refs/heads/chromium/5259
/
.
/
node_modules
/
eslint-module-utils
/
pkgUp.js
blob: f73e3f7b252da6c510bf36b3c13030fc9304f755 [
file
] [
log
] [
blame
] [
edit
]
'use strict'
;
exports
.
__esModule
=
true
;
const
findUp
=
require
(
'find-up'
);
exports
.
default
=
function
pkgUp
(
opts
)
{
return
findUp
.
sync
(
'package.json'
,
opts
);
};