├── .eslintrc ├── .gitignore ├── .node-version ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── add-license.txt ├── copyright.txt ├── index.js ├── lib ├── AsyncTimeout.js ├── MemoryStream.js ├── PrefixLog.js ├── Request.js ├── Require.js ├── Response.js ├── Sandbox.js ├── SandboxInternalException.js └── errors.js ├── package.json └── test ├── .eslintrc ├── AsyncTimeout.test.js ├── MemoryStream.test.js ├── PrefixLog.test.js ├── Request.test.js ├── Require.test.js ├── Response.test.js ├── Sandbox.test.js └── support ├── invalid.js └── valid.js /.eslintrc: -------------------------------------------------------------------------------- 1 | extends: airbnb 2 | rules: 3 | no-param-reassign: [error, { props: false }] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 8.9.1 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/README.md -------------------------------------------------------------------------------- /add-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/add-license.txt -------------------------------------------------------------------------------- /copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/copyright.txt -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/index.js -------------------------------------------------------------------------------- /lib/AsyncTimeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/lib/AsyncTimeout.js -------------------------------------------------------------------------------- /lib/MemoryStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/lib/MemoryStream.js -------------------------------------------------------------------------------- /lib/PrefixLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/lib/PrefixLog.js -------------------------------------------------------------------------------- /lib/Request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/lib/Request.js -------------------------------------------------------------------------------- /lib/Require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/lib/Require.js -------------------------------------------------------------------------------- /lib/Response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/lib/Response.js -------------------------------------------------------------------------------- /lib/Sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/lib/Sandbox.js -------------------------------------------------------------------------------- /lib/SandboxInternalException.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/lib/SandboxInternalException.js -------------------------------------------------------------------------------- /lib/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/lib/errors.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/AsyncTimeout.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/test/AsyncTimeout.test.js -------------------------------------------------------------------------------- /test/MemoryStream.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/test/MemoryStream.test.js -------------------------------------------------------------------------------- /test/PrefixLog.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/test/PrefixLog.test.js -------------------------------------------------------------------------------- /test/Request.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/test/Request.test.js -------------------------------------------------------------------------------- /test/Require.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/test/Require.test.js -------------------------------------------------------------------------------- /test/Response.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/test/Response.test.js -------------------------------------------------------------------------------- /test/Sandbox.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/test/Sandbox.test.js -------------------------------------------------------------------------------- /test/support/invalid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/test/support/invalid.js -------------------------------------------------------------------------------- /test/support/valid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/functions-sandbox/HEAD/test/support/valid.js --------------------------------------------------------------------------------