MutableArray#popObject()

popObjectpublic Defined in packages/ember-runtime/lib/mixins/mutable_array.js:208 Pop object from array or nil if none are left. Works just like pop() but it is KVO-compliant. let colors = ['red', 'green', 'blue']; colors.popObject(); // 'blue' console.log(colors); // ['red', 'green'] Returns: object

Mixin#reopen()

reopen (arguments) private Defined in packages/ember-metal/lib/mixin.js:518 Parameters: arguments

DS.Model#hasDirtyAttributes

hasDirtyAttributes{Boolean} Defined in addon/-private/system/model/model.js:101 Available since 1.13.0 If this property is true the record is in the dirty state. The record has local changes that have not yet been saved by the adapter. This includes records that have been created (but not yet saved) or deleted. Example var record = store.createRecord('model'); record.get('hasDirtyAttributes'); // true store.findRecord('model', 1).then(function(model) { model.get('hasDirtyAttributes'); //

RegistryProxyMixin#hasRegistration()

hasRegistration (fullName) Booleanpublic Defined in packages/ember-runtime/lib/mixins/registry_proxy.js:110 Check if a factory is registered. Parameters: fullName String Returns: Boolean

ViewTargetActionSupport#nearestOfType()

nearestOfType (klass) deprecatedprivate Defined in packages/ember-views/lib/mixins/view_support.js:21 use yield and contextual components for composition instead. Return the nearest ancestor that is an instance of the provided class or mixin. Parameters: klass Class,Mixin Subclass of Ember.View (or Ember.View itself), or an instance of Ember.Mixin. Returns: Ember.View

Mixin#apply()

apply (obj) private Defined in packages/ember-metal/lib/mixin.js:555 Parameters: obj Returns: applied object

Map#delete()

delete (key) Booleanprivate Defined in packages/ember-metal/lib/map.js:321 Available since 1.8.0 Removes a value from the map for an associated key. Parameters: key * Returns: Boolean true if an item was removed, false otherwise

DataAdapter#willDestroy()

willDestroyprivate Defined in packages/ember-extension-support/lib/data_adapter.js:239 Clear all observers before destruction

Inflector#inflect()

inflect (word, typeRules, irregular) protected Defined in node_modules/ember-inflector/addon/lib/system/inflector.js:234 Parameters: word String typeRules Object irregular Object

Instrumentation#unsubscribe()

unsubscribe (subscriber) private Defined in packages/ember-metal/lib/instrumentation.js:216 Unsubscribes from a particular event or instrumented block of code. Parameters: subscriber [Object]