Timers and other features for Heroes of the Storm
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 

12 řádky
258 B

  1. 'use strict'
  2. const fs = require('fs')
  3. const UglifyJS = require('uglify-es')
  4. module.exports = function(filePath) {
  5. const code = fs.readFileSync(filePath, 'utf-8')
  6. const result = UglifyJS.minify(code)
  7. if (result.error) return ''
  8. return result.code
  9. }