├── .bumpedrc ├── .editorconfig ├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── bower.json ├── dist ├── array-future.js └── example.html ├── gulpfile.coffee ├── lib ├── instance.js ├── static.js └── util.js ├── package.json ├── register.js └── test ├── test.coffee └── test.sh /.bumpedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/.bumpedrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | unsafe-perm=true 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/bower.json -------------------------------------------------------------------------------- /dist/array-future.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/dist/array-future.js -------------------------------------------------------------------------------- /dist/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/dist/example.html -------------------------------------------------------------------------------- /gulpfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/gulpfile.coffee -------------------------------------------------------------------------------- /lib/instance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/lib/instance.js -------------------------------------------------------------------------------- /lib/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/lib/static.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/lib/util.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/package.json -------------------------------------------------------------------------------- /register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/register.js -------------------------------------------------------------------------------- /test/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/test/test.coffee -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/array-future/HEAD/test/test.sh --------------------------------------------------------------------------------