Sign in
cobalt
/
cobalt.git
/
04cd6faca4dd5039a1b810e9ba7b7a79e51a781d
/
.
/
src
/
cobalt
/
debug
/
remote
/
devtools
/
node_modules
/
karma-coverage
/
lib
/
source-cache.js
blob: 2de3e813b9758d71794c1baa43aca8ea5f7033ea [
file
]
// Source Cache
// ============
var
cache
=
{}
function
get
(
basePath
)
{
if
(!
cache
[
basePath
])
{
cache
[
basePath
]
=
{}
}
return
cache
[
basePath
]
}
module
.
exports
=
{
get
:
get
}