Feuerwehr-eppingen/node_modules/uglifyjs-webpack-plugin/dist/utils/index.js

14 lines
384 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
function isSourceMap(input) {
// All required options for `new SourceMapConsumer(...options)`
// https://github.com/mozilla/source-map#new-sourcemapconsumerrawsourcemap
return Boolean(input && input.version && input.sources && input.names && input.mappings);
}
exports.default = {
isSourceMap
};