blob: 8b1b1c4f1a6c57e082cefeb30a5b2df1c07dd48f [file] [log] [blame] [edit]
var istanbulLibSourceMaps = require('istanbul-lib-source-maps')
var cache = {}
function get (basePath, opts) {
if (!cache[basePath]) {
cache[basePath] = istanbulLibSourceMaps.createSourceMapStore(opts)
}
return cache[basePath]
}
module.exports = {
get: get
}