1
0
forked from Rowland/EG
EG/Cesium-1.132/node_modules/karma-coverage/lib/source-map-store.js
2025-08-25 17:48:13 +08:00

15 lines
274 B
JavaScript

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
}