Sign in
chromium
/
devtools
/
devtools-frontend
/
refs/heads/chromium/3966
/
.
/
node_modules
/
karma-coverage
/
lib
/
source-cache.js
blob: 2de3e813b9758d71794c1baa43aca8ea5f7033ea [
file
] [
log
] [
blame
] [
edit
]
// Source Cache
// ============
var
cache
=
{}
function
get
(
basePath
)
{
if
(!
cache
[
basePath
])
{
cache
[
basePath
]
=
{}
}
return
cache
[
basePath
]
}
module
.
exports
=
{
get
:
get
}