Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 541 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 541 Bytes

Template-String

Build Status

Simple template strings.

Example

$ npm install template-string
$ node
> console.log(require('template-string')('Hello from ${who}!', {who: 'me'}));
Hello from me!

Keeping up to date