Search results

4991 packages found

A collection of `Object` polyfills for Exendscript.

published 2.0.1 6 years ago
M
Q
P

The trim() method removes whitespace from both ends of a string.

published 3.0.0 6 years ago
M
Q
P

The `create()` method creates a new object with the specified prototype.

published 2.0.0 6 years ago
M
Q
P

The `isArray()` method determines whether the passed value is an Array.

published 2.0.0 6 years ago
M
Q
P

The Array.map() method creates a new array with the results of calling a provided function on every element in the calling array.

published 2.0.0 6 years ago
M
Q
P

A collection of `Array` polyfills for Exendscript.

published 2.0.1 6 years ago
M
Q
P

The `Object.freeze()` method freezes an object: that is, prevents new properties from being added to it; prevents existing properties from being removed; and prevents existing properties, or their enumerability, configurability, or writability, from being

published 2.0.0 6 years ago
M
Q
P

The `every()` method tests whether all elements in the array pass the test implemented by the provided function.

published 2.0.0 6 years ago
M
Q
P

The `find()` method returns the value of the first element in the array that satisfies the provided testing function. Otherwise undefined is returned.

published 2.0.0 6 years ago
M
Q
P

The `Array.some()` method tests whether at least one element in the array passes the test implemented by the provided function.

published 2.0.0 6 years ago
M
Q
P

The static method `Object.defineProperty()` defines a new property directly on an object, or modifies an existing property on an object, and returns the object.

published 2.0.0 6 years ago
M
Q
P

The `bind()` method creates a new function that, when called, has its this keyword set to the provided value, with a given sequence of arguments preceding any provided when the new function is called.

published 2.0.0 6 years ago
M
Q
P

The `Number.isFinite()` method determines whether the passed value is a finite number.

published 2.0.0 6 years ago
M
Q
P

The `Object.getOwnPropertyDescriptor()` method returns a property descriptor for an own property (that is, one directly present on an object and not in the object's prototype chain) of a given object.

published 2.0.0 6 years ago
M
Q
P

The Object.isSealed() method determines if an object is sealed.

published 2.0.0 6 years ago
M
Q
P

The Object.seal() method seals an object, preventing new properties from being added to it and marking all existing properties as non-configurable. Values of present properties can still be changed as long as they are writable.

published 2.0.0 6 years ago
M
Q
P
M
Q
P

The `from()` method creates a new Array instance from an array-like or iterable object.

published 2.0.0 6 years ago
M
Q
P

The `lastIndexOf()` method returns the last index at which a given element can be found in the array, or -1 if it is not present. The array is searched backwards, starting at fromIndex.

published 2.0.0 6 years ago
M
Q
P

The `assign()` method is used to copy values of all enumerable own properties from one or more source objects to a target object. It will return the target object.

published 2.0.0 6 years ago
M
Q
P