Sha256: 69245db1ca3acc8fb998c55cb05ed2b6863bc6deca3d9d38c89661451f9fc4d0

Contents?: true

Size: 1.46 KB

Versions: 1

Compression:

Stored size: 1.46 KB

Contents

// Set source-map.js sourceMap to terser.js MOZ_SourceMap
MOZ_SourceMap = sourceMap;

var global = global || {};

function comments(option) {
  if (Object.prototype.toString.call(option) === '[object Array]') {
    return new RegExp(option[0], option[1]);
  } else if (option == "jsdoc") {
    return function(node, comment) {
      if (comment.type == "comment2") {
        return /@preserve|@license|@cc_on/i.test(comment.value);
      } else {
        return false;
      }
    };
  } else {
    return option;
  }
}

function regexOption(options) {
  if (typeof options === 'object' && options.regex) {
    return new RegExp(options.regex[0], options.regex[1]);
  } else {
    return null;
  }
}

function terser_wrapper(options) {
  var source = options.source;
  options.output.comments = comments(options.output.comments);

  if (options.mangle) {
    if (options.mangle.properties) {
      options.mangle.properties.regex = regexOption(options.mangle.properties);
    }
  }
  delete options.source;


  var inputFilename = '0';
  if (options.sourceMap) {
    inputFilename = options.sourceMap.input;
    delete options.sourceMap.input;
  }

  var inputs = {};
  inputs[inputFilename] = source;

  try {
    return Terser.minifySync(inputs, options, null);
  } catch (error) {
    const { message, filename, line, col, pos } = error;
    return {error: {message: message, filename: filename, line: line, col: col, pos: pos}}
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
terser-1.1.20 lib/terser_wrapper.js