ember-assign-polyfill
v2.7.3
Published
A polyfill for Ember.assign in <= 2.4
Downloads
178,702
Maintainers
Readme
ember-assign-polyfill
This provides a polyfill for the Ember.assign feature added in Ember 2.5.
Installation
ember install ember-assign-polyfill
Usage
import Ember from 'ember';
var a = { first: 'Robert' };
var b = { last: 'Wagner' };
var c = { company: 'Ship Shape' };
Ember.assign(a, b, c); // a === { first: 'Robert', last: 'Wagner', company: 'Ship Shape' }, b === { last: 'Wagner' }, c === { company: 'Ship Shape' }
Migration
Applications
After you upgrade your application to Ember 2.5, you should remove ember-assign-polyfill from your package.json.
Addons
Addons generally support many different Ember versions, so leaving ember-assign-polyfill in place for consumers of your addon is perfectly normal. When the addon no longer supports Ember versions older than 2.5, we recommend removing ember-assign-polyfill from your package.json and doing a major version bump.
Contributing
See the Contributing guide for details.
License
This project is licensed under the MIT License.