UNPKG

calculus-cli

Version:

AWS Lambda CLI to quickly generate Nodejs Lambda functions along with a CI/CD pipeline.

8 lines 252 B
export default function (fileString, data) { return fileString.replace( /%(\w*)%/g, // or /{(\w*)}/g for "{this} instead of %this%" function (m, key) { return data.hasOwnProperty(key) ? data[key] : ""; } ); }