├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── example.js ├── example.json ├── index.js ├── package.json └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/es2040/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/es2040/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/es2040/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/es2040/HEAD/README.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/es2040/HEAD/example.js -------------------------------------------------------------------------------- /example.json: -------------------------------------------------------------------------------- 1 | { "same": "as it ever was" } 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/es2040/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/es2040/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/es2040/HEAD/test.js --------------------------------------------------------------------------------