Package Exports
- string-interpolate-polyfill
- string-interpolate-polyfill/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (string-interpolate-polyfill) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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"] }
}