@backtrace/sourcemap-tools
Version:
Backtrace-JavaScript sourcemap tools
11 lines • 413 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.matchSourceMapExtension = exports.matchSourceExtension = void 0;
function testString(regex) {
return function test(str) {
return regex.test(str);
};
}
exports.matchSourceExtension = testString(/\.(c|m)?jsx?$/);
exports.matchSourceMapExtension = testString(/\.(c|m)?jsx?\.map$/);
//# sourceMappingURL=match.js.map
;