Skip to content

Instantly share code, notes, and snippets.

@vinyll
Created November 25, 2017 10:43
Show Gist options
  • Save vinyll/13caab1929497ba713069741329bdd71 to your computer and use it in GitHub Desktop.
Save vinyll/13caab1929497ba713069741329bdd71 to your computer and use it in GitHub Desktop.
/**
Simple string literal for native JS text literal substitution.
`literal(string, context)` where:
- `string` is a string that may contains literal string variables or functions wich be evaluated.
- `context` is the variable context object. Any reference to `this` in the `string` argument will
refer to the `context` object.
Example:
literal('Hello ${this.name}. Shout ${this.word.toUpperCase()}!', {
name: 'Willy', word: 'Waller'
})
Will return "Hello Willy. Shout WALLER!"
*/
function literal(string, context) {
const func = new Function(`return \`${string}\``)
return func.call(context)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment