Skip to content
This repository has been archived by the owner on Jan 17, 2025. It is now read-only.

Parses string templates and produces Ember computed properties

License

Notifications You must be signed in to change notification settings

intercom/ember-computed-template-string-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ember-computed-template-string-parser

Build Status

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.

About

Parses string templates and produces Ember computed properties

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •