0.1.3 • Published 6 years ago

@moln/simple-es6-template-compiler v0.1.3

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Simple es6 template compiler / 简易的ES6模板解析器

Usage / 使用

var es6Compiler = require('@moln/simple-es6-template-compiler');
es6Compiler(
    "Sum: ${param1} + ${param2} = ${ param1 + param2 }\n" + 
    "Concat: ${ concat('hello', 'world') }", 
    {
        param1: 1, 
        param2: 2,
        concat: function (a, b) {
            return a + ' ' + b
        }
    }
); 
//Sum: 1 + 2 = 3
//Concat: hello world