Skip to content

Commit

Permalink
Merge pull request #16 from Turbo87/uniqby
Browse files Browse the repository at this point in the history
Add missing import mapping for Ember.computed.uniqBy()
  • Loading branch information
rwjblue authored Jul 6, 2017
2 parents a9f4735 + 2481087 commit 610da1a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ JSON data for [RFC #176](https://github.com/emberjs/rfcs/blob/master/text/0176-j
| `Ember.computed.sum` | `import { sum } from "@ember/object/computed"` |
| `Ember.computed.union` | `import { union } from "@ember/object/computed"` |
| `Ember.computed.uniq` | `import { uniq } from "@ember/object/computed"` |
| `Ember.computed.uniqBy` | `import { uniqBy } from "@ember/object/computed"` |
| `Ember.copy` | `import { copy } from "@ember/object/internals"` |
| `Ember.create` | `import { create } from "@ember/polyfills"` |
| `Ember.debug` | `import { debug } from "@ember/debug"` |
Expand Down Expand Up @@ -270,6 +271,7 @@ JSON data for [RFC #176](https://github.com/emberjs/rfcs/blob/master/text/0176-j
| `import { sum } from "@ember/object/computed"` | `Ember.computed.sum` |
| `import { union } from "@ember/object/computed"` | `Ember.computed.union` |
| `import { uniq } from "@ember/object/computed"` | `Ember.computed.uniq` |
| `import { uniqBy } from "@ember/object/computed"` | `Ember.computed.uniqBy` |
| `import Evented from "@ember/object/evented"` | `Ember.Evented` |
| `import { on } from "@ember/object/evented"` | `Ember.on` |
| `import { addListener } from "@ember/object/events"` | `Ember.addListener` |
Expand Down
1 change: 1 addition & 0 deletions globals.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"computed.filterBy": ["@ember/object/computed", "filterBy"],
"computed.filterProperty": ["@ember/object/computed", "filterProperty"],
"computed.uniq": ["@ember/object/computed", "uniq"],
"computed.uniqBy": ["@ember/object/computed", "uniqBy"],
"computed.union": ["@ember/object/computed", "union"],
"computed.intersect": ["@ember/object/computed", "intersect"],
"Evented": ["@ember/object/evented"],
Expand Down

0 comments on commit 610da1a

Please sign in to comment.