Ember.computed.match()

match (dependentKey, regexp) Ember.ComputedPropertypublic Defined in packages/ember-runtime/lib/computed/computed_macros.js:216 A computed property which matches the original value for the dependent property against a given RegExp, returning true if the value matches the RegExp and false if it does not. Example let User = Ember.Object.extend({ hasValidEmail: Ember.computed.match('email', /^.+@.+\..+$/) }); let user = User.create({loggedIn: false}); user.get('hasValidEmail'); // false us

DS.Store#findMany()

findMany (internalModels) Promiseprivate Defined in addon/-private/system/store.js:1015 Parameters: internalModels Array Returns: Promise promise

Ember.beforeObserver()

beforeObserver (propertyNames, func) deprecatedprivate Defined in packages/ember-metal/lib/mixin.js:794 When observers fire, they are called with the arguments obj, keyName. Note, @each.property observer is called per each add or replace of an element and it's not called with a specific enumeration item. A _beforeObserver fires before a property changes. A _beforeObserver is an alternative form of .observesBefore(). App.PersonView = Ember.View.extend({ friends: [{ name: 'Tom' }, { name: '

DS.JSONSerializer#modelNameFromPayloadKey()

modelNameFromPayloadKey (key) String Defined in addon/serializers/json.js:716 Parameters: key String Returns: String the model's modelName

Ember.beginPropertyChanges()

beginPropertyChangesprivate Defined in packages/ember-metal/lib/property_events.js:205

Ember.computed.union()

union (propertyKey) Ember.ComputedPropertypublic Defined in packages/ember-runtime/lib/computed/reduce_computed_macros.js:426 Alias for Ember.computed.uniq. Parameters: propertyKey String Returns: Ember.ComputedProperty computes a new array with all the unique elements from the dependent array

Ember.defineProperty()

defineProperty (obj, keyName, desc, data) private Defined in packages/ember-metal/lib/properties.js:84 NOTE: This is a low-level method used by other parts of the API. You almost never want to call this method directly. Instead you should use Ember.mixin() to define new properties. Defines a property on an object. This method works much like the ES5 Object.defineProperty() method except that it can also accept computed properties and other special descriptors. Normally this method takes onl

Ember.GUID_PREFIX

GUID_PREFIXStringprivateconstant Defined in packages/ember-metal/lib/utils.js:30 Prefix used for guids through out Ember.

TextField#type

typeStringpublic Defined in packages/ember-htmlbars/lib/components/text_field.js:100 The type attribute of the input element. Default: "text"

Ember.VERSION

VERSIONStringpublic Defined in packages/ember-metal/lib/index.js:308 The semantic version