Created
November 25, 2017 10:43
-
-
Save vinyll/13caab1929497ba713069741329bdd71 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
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