├── .github └── workflows │ └── npmpublish.yml ├── .gitignore ├── .vscode └── settings.json ├── Array ├── .gitkeep ├── from.js └── reduce.js ├── Function └── .gitkeep ├── LICENSE ├── Object └── assign.js ├── README.md ├── String └── .gitkeep ├── bin └── concat.js ├── index.js ├── package.json └── test └── array.from.test.jsx /.github/workflows/npmpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es6-shim/HEAD/.github/workflows/npmpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es6-shim/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es6-shim/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Array/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Array/from.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es6-shim/HEAD/Array/from.js -------------------------------------------------------------------------------- /Array/reduce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es6-shim/HEAD/Array/reduce.js -------------------------------------------------------------------------------- /Function/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es6-shim/HEAD/LICENSE -------------------------------------------------------------------------------- /Object/assign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es6-shim/HEAD/Object/assign.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es6-shim/HEAD/README.md -------------------------------------------------------------------------------- /String/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es6-shim/HEAD/bin/concat.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es6-shim/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es6-shim/HEAD/package.json -------------------------------------------------------------------------------- /test/array.from.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/extendscript-es6-shim/HEAD/test/array.from.test.jsx --------------------------------------------------------------------------------