├── .eslintrc ├── .gitignore ├── .npmignore ├── README.md ├── lib └── extendscript.prototypes.js ├── npm └── concat.js ├── package.json ├── renovate.json ├── src ├── Array.filter.js ├── Array.forEach.js ├── Array.indexOf.js ├── Array.reduce.js ├── Array.some.js ├── Array.where.js ├── Object.assign.js ├── Object.defineProperty.js ├── Prototypes.js └── String.localeCompare.js └── test ├── babyparse.js ├── countries.json ├── json2.js ├── jsonQ.js └── test.jsx /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | lib/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | !lib/ 4 | test 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/README.md -------------------------------------------------------------------------------- /lib/extendscript.prototypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/lib/extendscript.prototypes.js -------------------------------------------------------------------------------- /npm/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/npm/concat.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/renovate.json -------------------------------------------------------------------------------- /src/Array.filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/src/Array.filter.js -------------------------------------------------------------------------------- /src/Array.forEach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/src/Array.forEach.js -------------------------------------------------------------------------------- /src/Array.indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/src/Array.indexOf.js -------------------------------------------------------------------------------- /src/Array.reduce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/src/Array.reduce.js -------------------------------------------------------------------------------- /src/Array.some.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/src/Array.some.js -------------------------------------------------------------------------------- /src/Array.where.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/src/Array.where.js -------------------------------------------------------------------------------- /src/Object.assign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/src/Object.assign.js -------------------------------------------------------------------------------- /src/Object.defineProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/src/Object.defineProperty.js -------------------------------------------------------------------------------- /src/Prototypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/src/Prototypes.js -------------------------------------------------------------------------------- /src/String.localeCompare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/src/String.localeCompare.js -------------------------------------------------------------------------------- /test/babyparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/test/babyparse.js -------------------------------------------------------------------------------- /test/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/test/countries.json -------------------------------------------------------------------------------- /test/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/test/json2.js -------------------------------------------------------------------------------- /test/jsonQ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/test/jsonQ.js -------------------------------------------------------------------------------- /test/test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/extendscript.prototypes/HEAD/test/test.jsx --------------------------------------------------------------------------------