Socket
Socket
Sign inDemoInstall

ember-lodash-computed

Package Overview
Dependencies
186
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ember-lodash-computed

Ember computed macros with lodash in mind


Version published
Weekly downloads
1
Maintainers
1
Install size
18.9 MB
Created
Weekly downloads
 

Readme

Source

Ember-lodash-computed npm version Build Status Ember Observer Score

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-computed

Usage

import Ember from 'ember';
import { isString } from 'ember-lodash-computed';

export default Ember.Object.create({
  foo: "foo",
  isFooString: isString('foo') // true
});

Implemented Computed Methods

  • includes
  • isArguments
  • isArray
  • isBoolean
  • isDate
  • isElement
  • isEmpty
  • isFunction
  • isNaN
  • isNative
  • isNull
  • isNumber
  • isObject
  • isPlainObject
  • isRegExp
  • isString
  • isTypedArray
  • isUndefined

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 foo

After 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')
});

Keywords

FAQs

Last updated on 13 Apr 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc