horse-betting/btc-ui-app-2/node_modules/karma-coverage/lib/source-map-store.js
2025-06-19 16:39:08 +05:30

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
}