expandProperties (pattern, callback) private
Defined in packages/ember-metal/lib/expand_properties.js:11
Expands pattern, invoking callback for each expansion. The only pattern supported is brace-expansion, anything else will be passed once to callback directly. Example function echo(arg){ console.log(arg); }
Ember.expandProperties('foo.bar', echo); //=> 'foo.bar'
Ember.expandProperties('{foo,bar}', echo); //=> 'foo', 'bar'
Ember.expandProperties('foo.{bar,baz