Timers and other features for Heroes of the Storm
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

12 wiersze
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. }