Showing 1-20 of 875 packages
Returns an array of all enumerable symbol properties found directly upon a given object
Define a non-enumerable read-only property.
Test if an object's own property is enumerable.
Indicates whether the specified property is enumerable.
Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.
Return an array of an object's own enumerable and non-enumerable property names.
Return an array of an object's own enumerable property names and symbols.
Merges the enumerable properties of two or more objects deeply.
Polyfill for ember-runtime-enumerable-includes feature (noop in Ember >= 2.8)
Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines.
Define a non-enumerable read-only accessor.
Define a non-enumerable read-write accessor.
Create an array of the owned/enumerable keys of an input object.
Return an array of an object's own enumerable property names.
tiny util for making enumerable properties
Modify the names of the own enumerable properties (keys) of an object.
return true if object has no enumerable key values
Executes a callback for each property found on a object, with options regarding enumerability (enumerable or non-enumerable) and ownership (inherited or only own properties). It excludes built-in properties from Object and Function prototypes by default,
Creates an array composed of the own enumerable property names(including nested) of an object.
Executes a callback for each property found on a object, recursively on nested properties, with options regarding enumerability (enumerable or non-enumerable) and ownership (inherited or only own properties). It excludes built-in properties from Object an