0.0.8 • Published 10 years ago
ember-lodash-computed v0.0.8
Ember-lodash-computed

Computed macros for lodash is methods. As well as blueprint for generating computed properties in your own ember project.
Installation
# ember-cli > 0.2.3
ember install ember-lodash-computed
# ember-cli <= 0.2.3
ember install:addon ember-lodash-computedUsage
import Ember from 'ember';
import { isString } from 'ember-lodash-computed';
export default Ember.Object.create({
foo: "foo",
isFooString: isString('foo') // true
});Implemented Computed Methods
includesisArgumentsisArrayisBooleanisDateisElementisEmptyisFunctionisNaNisNativeisNullisNumberisObjectisPlainObjectisRegExpisStringisTypedArrayisUndefined
Blueprints
There are also blueprints added as part of this repo. You can generate custom computed methods by doing the following. The command will generate the custom computed.
ember generate computed fooAfter implementing the computed generated at app/computeds/foo.js, you can then use it in your project like so:
import Ember from 'ember';
import { foo } from 'app/computeds/foo';
export default Ember.Object.create({
bar: "bar",
barComputed: foo('bar')
});