1.0.1 • Published 1 year ago

string-interpolate-polyfill v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

string-interpolate-polyfill

Inject mustache.render method as interpolate function to string primitive type

How to use

// js files
require('string-interpolate-polyfill');
const template = 'Hello {{world}}';
const view = {world: 'World!!!'};
console.log(template.interpolate(view));
// ts files
import 'string-interpolate-polyfill';
type View = { world: string }
const template = 'Hello {{world}}';
const view: View = {world: 'World!!!'};
console.log(template.interpolate<View>(view));

You can integrate this directly in tsconfig files like this:

{
  "compilerOptions": { },
  "ts-node": { "require": ["string-interpolate-polyfill"] }
}
1.0.1

1 year ago

1.0.0

1 year ago