@jswork/next-secret-tmpl
v1.0.1
Published
Secret template engine.
Downloads
376
Readme
next-secret-tmpl
Secret template engine.
installation
npm install -S @jswork/next-secret-tmpl
usage
import '@jswork/next-secret-tmpl';
const str = '${{ GITHUB_API_TOKEN }} - ${{ afei }}';
const ctx = { GITHUB_API_TOKEN: 'xxx-yyy-zzz', afei:'zhengfei' };
const res = nx.secretTmpl(str, ctx);
// xxx-yyy-zzz - zhengfei
license
Code released under the MIT license.