ember-computed-template-string-parser
v0.1.0
Published
[![Build Status](https://travis-ci.org/intercom/ember-computed-template-string-parser.svg?branch=master)](https://travis-ci.org/intercom/ember-computed-template-string-parser)
Downloads
6
Readme
ember-computed-template-string-parser
This simple package converts a string such as:
"hello ${name}!"
into:
Ember.computed("name", function() {
return "hello " + this.get("name") + "!";
})
and is used in the ember-computed-template-string
addon.