Search results

107 packages found

The `reduceRight()` method applies a function against an accumulator and each value of the array (from right-to-left) to reduce it to a single value.

published 2.0.0 6 years ago
M
Q
P

The Object.isFrozen() determines if an object is frozen.

published 2.0.0 6 years ago
M
Q
P

The `Array.reduce()` method applies a function against an accumulator and each element in the array (from left to right) to reduce it to a single value.

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 ruler utility adds the `ruler.set()` method. This method sets both rulers to the desired units. It returns the original ruler-settings which we can pass back to reset the rulers to original state.

published 1.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 Object.isSealed() method determines if an object is sealed.

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 `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 `forEach()` method executes a provided function once for each array element.

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 `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 `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

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 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 `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 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

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