Timers and other features for Heroes of the Storm
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- 'use strict'
-
- const fs = require('fs')
- const UglifyJS = require('uglify-es')
-
- module.exports = function(filePath) {
- const code = fs.readFileSync(filePath, 'utf-8')
- const result = UglifyJS.minify(code)
- if (result.error) return ''
- return result.code
- }
|