1.0.6 • Published 4 years ago

hackmud-minifier v1.0.6

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

hackmud-minifier

Script minifier for the game hackmud.

Example

import { minify } from "hackmud-minifier";

var code = `function (context, args) {
	return { context, args };
}`

minify(code).then(minified => console.log(minified));