├── .gitignore ├── .watchmanconfig ├── LICENSE.md ├── README.md ├── __tests__ └── index.test.js ├── index.js ├── jest └── env.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbt/next-frame/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbt/next-frame/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbt/next-frame/HEAD/__tests__/index.test.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbt/next-frame/HEAD/index.js -------------------------------------------------------------------------------- /jest/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbt/next-frame/HEAD/jest/env.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbt/next-frame/HEAD/package.json --------------------------------------------------------------------------------