front-compiler
v0.1.3
Published
前端 JS 编译器
Downloads
2
Readme
js-compiler
介绍
前端 JS 编译器
用于在前端编译并执行 js 代码。
使用方式
import { transform, execute } from 'js-compiler';
const content = transform({
'index.js': "xxxxx";
'util.js': 'xxxx',
// ...
});
const ret = execute(content);