extendscript
The `every()` method tests whether all elements in the array pass the test implemented by the provided function.
published version 2.0.0, 7 years agoThe `filter()` method creates a new array with all elements that pass the test implemented by the provided function.
published version 2.0.0, 7 years agoThe `find()` method returns the value of the first element in the array that satisfies the provided testing function. Otherwise undefined is returned.
published version 2.0.0, 7 years agoThe `forEach()` method executes a provided function once for each array element.
published version 2.0.0, 7 years agoThe `from()` method creates a new Array instance from an array-like or iterable object.
published version 2.0.0, 7 years agoThe `indexOf()` method searches the array for the specified item, and returns its position.
published version 2.0.0, 7 years agoThe `isArray()` method determines whether the passed value is an Array.
published version 2.0.0, 7 years agoThe `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 version 2.0.0, 7 years agoThe Array.map() method creates a new array with the results of calling a provided function on every element in the calling array.
published version 2.0.0, 7 years agoThe `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 version 2.0.0, 7 years agoThe `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 version 2.0.0, 7 years agoThe `Array.some()` method tests whether at least one element in the array passes the test implemented by the provided function.
published version 2.0.0, 7 years agoA collection of `Array` polyfills for Exendscript.
published version 2.0.1, 7 years agoA collection of ES5 polyfills for Exendscript.
published version 2.0.2, 7 years agoA collection of polyfills to bring ExtendScript to ES6 standards.
published version 2.0.0, 7 years agoA collection of `Object` polyfills for Exendscript.
published version 2.0.1, 7 years agoA `console.log()` for ExtendScript.
published version 2.0.0, 7 years agoThe `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 version 2.0.0, 7 years agoAdds the light-weight, language independent, data interchange format `JSON` to ExtendScript.
published version 2.0.0, 7 years agoAdds the `clone()` method to JSON
published version 1.0.1, 6 years agoAdds `instantiate()` to JSON. A simple tool for instantiating JSON Schemas.
published version 1.0.0, 6 years agoAdds `validate()` to JSON. Validate a JSON objects to Schema.
published version 1.0.1, 6 years agoThe `Number.isFinite()` method determines whether the passed value is a finite number.
published version 2.0.0, 7 years agoThe `Number.isInteger()` method determines whether the passed value is an integer.
published version 1.0.0, 6 years agoThe `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 version 2.0.0, 7 years ago