├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── index.js ├── license ├── package.json ├── readme.md └── test ├── fixture ├── module.js └── submodule.js └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/require-from-string/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/require-from-string/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/require-from-string/HEAD/.travis.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/require-from-string/HEAD/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/require-from-string/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/require-from-string/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/require-from-string/HEAD/readme.md -------------------------------------------------------------------------------- /test/fixture/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/require-from-string/HEAD/test/fixture/module.js -------------------------------------------------------------------------------- /test/fixture/submodule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/require-from-string/HEAD/test/fixture/submodule.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/require-from-string/HEAD/test/index.js --------------------------------------------------------------------------------