├── .all-contributorsrc ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── Array.d.ts ├── Array ├── every.js ├── filter.js ├── forEach.js ├── indexOf.js ├── isArray.js ├── lastIndexOf.js ├── map.js ├── reduce.js ├── reduceRight.js └── some.js ├── Date.d.ts ├── Date └── toISOString.js ├── Function.d.ts ├── Function └── bind.js ├── JSON.d.ts ├── JSON └── json2.js ├── Object.d.ts ├── Object ├── create.js ├── defineProperties.js ├── defineProperty.js ├── freeze.js ├── getOwnPropertyDescriptor.js ├── getOwnPropertyNames.js ├── getPrototypeOf.js ├── isExtensible.js ├── isFrozen.js ├── isSealed.js ├── keys.js ├── preventExtensions.js └── seal.js ├── README.md ├── String.d.ts ├── String └── trim.js ├── __tests__ └── array.test.js ├── bin └── concat.js ├── index.d.ts ├── index.js ├── jest.config.js └── package.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/.gitignore -------------------------------------------------------------------------------- /Array.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Array.d.ts -------------------------------------------------------------------------------- /Array/every.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Array/every.js -------------------------------------------------------------------------------- /Array/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Array/filter.js -------------------------------------------------------------------------------- /Array/forEach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Array/forEach.js -------------------------------------------------------------------------------- /Array/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Array/indexOf.js -------------------------------------------------------------------------------- /Array/isArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Array/isArray.js -------------------------------------------------------------------------------- /Array/lastIndexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Array/lastIndexOf.js -------------------------------------------------------------------------------- /Array/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Array/map.js -------------------------------------------------------------------------------- /Array/reduce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Array/reduce.js -------------------------------------------------------------------------------- /Array/reduceRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Array/reduceRight.js -------------------------------------------------------------------------------- /Array/some.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Array/some.js -------------------------------------------------------------------------------- /Date.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Date.d.ts -------------------------------------------------------------------------------- /Date/toISOString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Date/toISOString.js -------------------------------------------------------------------------------- /Function.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Function.d.ts -------------------------------------------------------------------------------- /Function/bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Function/bind.js -------------------------------------------------------------------------------- /JSON.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/JSON.d.ts -------------------------------------------------------------------------------- /JSON/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/JSON/json2.js -------------------------------------------------------------------------------- /Object.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Object.d.ts -------------------------------------------------------------------------------- /Object/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Object/create.js -------------------------------------------------------------------------------- /Object/defineProperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Object/defineProperties.js -------------------------------------------------------------------------------- /Object/defineProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Object/defineProperty.js -------------------------------------------------------------------------------- /Object/freeze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Object/freeze.js -------------------------------------------------------------------------------- /Object/getOwnPropertyDescriptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Object/getOwnPropertyDescriptor.js -------------------------------------------------------------------------------- /Object/getOwnPropertyNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Object/getOwnPropertyNames.js -------------------------------------------------------------------------------- /Object/getPrototypeOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Object/getPrototypeOf.js -------------------------------------------------------------------------------- /Object/isExtensible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Object/isExtensible.js -------------------------------------------------------------------------------- /Object/isFrozen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Object/isFrozen.js -------------------------------------------------------------------------------- /Object/isSealed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Object/isSealed.js -------------------------------------------------------------------------------- /Object/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Object/keys.js -------------------------------------------------------------------------------- /Object/preventExtensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Object/preventExtensions.js -------------------------------------------------------------------------------- /Object/seal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/Object/seal.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/README.md -------------------------------------------------------------------------------- /String.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/String.d.ts -------------------------------------------------------------------------------- /String/trim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/String/trim.js -------------------------------------------------------------------------------- /__tests__/array.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/__tests__/array.test.js -------------------------------------------------------------------------------- /bin/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/bin/concat.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es5-shim/HEAD/package.json --------------------------------------------------------------------------------