Package Exports
- inks
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 (inks) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
inks
Interpolate values from a shared context into a string template.
Quick Example
const Inks = require('inks')
const context = { red: { foo: 1, bar: 'zed'}, green: { fizz: { buzz: 'FRED' }} }
const template = 'Lorum `red:foo` ipsum `this.red.foo + this.red.bar.length` dolor `green:fizz.buzz` sit \\` amet.'
const result = Inks(template, context)
// prints:
// Lorem 1 ipsum 4 dolor FRED sit ` amet.
Questions?
License
Copyright (c) 2017, Richard Rodger and other contributors. Licensed under MIT.