├── .github └── FUNDING.yml ├── .npmrc ├── .travis.yml ├── LICENSE ├── bin ├── cmd.js └── usage.txt ├── example ├── async.js ├── main.js └── robot.html ├── index.js ├── package.json ├── readme.markdown ├── security.md └── test ├── ag.js ├── async.js ├── buffer.js ├── bundle.js ├── cmd.js ├── dynamic_read_concat.js ├── dynamic_read_no_concat.js ├── encoding.js ├── files ├── ag.js ├── ag.json ├── ag_post.html ├── ag_pre.html ├── async.js ├── async.txt ├── async_encoding.js ├── async_str_encoding.js ├── buffer.js ├── dynamic_read_concat.js ├── dynamic_read_no_concat.js ├── encoding.js ├── hoist.js ├── inline.js ├── main.js ├── multi_var.js ├── non_fs.js ├── path_join.js ├── path_join_other_name.js ├── path_join_single_var.js ├── readdir-sync.js ├── readdir.js ├── robot.html ├── scope-sentinel ├── scope.js ├── separators.js ├── separators.txt ├── tr.beep ├── tr.html └── with_comments.js ├── hoist.js ├── inline.js ├── multi_var.js ├── non_fs.js ├── path_join.js ├── path_join_other_name.js ├── path_join_single_var.js ├── readdir.js ├── require_resolve.js ├── require_resolve ├── main.js └── node_modules │ └── aaa │ └── wow.txt ├── scope.js ├── separators.js ├── tr.js └── with_comments.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/LICENSE -------------------------------------------------------------------------------- /bin/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/bin/cmd.js -------------------------------------------------------------------------------- /bin/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/bin/usage.txt -------------------------------------------------------------------------------- /example/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/example/async.js -------------------------------------------------------------------------------- /example/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/example/main.js -------------------------------------------------------------------------------- /example/robot.html: -------------------------------------------------------------------------------- 1 | beep boop 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/package.json -------------------------------------------------------------------------------- /readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/readme.markdown -------------------------------------------------------------------------------- /security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/security.md -------------------------------------------------------------------------------- /test/ag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/ag.js -------------------------------------------------------------------------------- /test/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/async.js -------------------------------------------------------------------------------- /test/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/buffer.js -------------------------------------------------------------------------------- /test/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/bundle.js -------------------------------------------------------------------------------- /test/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/cmd.js -------------------------------------------------------------------------------- /test/dynamic_read_concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/dynamic_read_concat.js -------------------------------------------------------------------------------- /test/dynamic_read_no_concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/dynamic_read_no_concat.js -------------------------------------------------------------------------------- /test/encoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/encoding.js -------------------------------------------------------------------------------- /test/files/ag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/ag.js -------------------------------------------------------------------------------- /test/files/ag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/ag.json -------------------------------------------------------------------------------- /test/files/ag_post.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/files/ag_pre.html: -------------------------------------------------------------------------------- 1 |

-------------------------------------------------------------------------------- /test/files/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/async.js -------------------------------------------------------------------------------- /test/files/async.txt: -------------------------------------------------------------------------------- 1 | what 2 | -------------------------------------------------------------------------------- /test/files/async_encoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/async_encoding.js -------------------------------------------------------------------------------- /test/files/async_str_encoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/async_str_encoding.js -------------------------------------------------------------------------------- /test/files/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/buffer.js -------------------------------------------------------------------------------- /test/files/dynamic_read_concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/dynamic_read_concat.js -------------------------------------------------------------------------------- /test/files/dynamic_read_no_concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/dynamic_read_no_concat.js -------------------------------------------------------------------------------- /test/files/encoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/encoding.js -------------------------------------------------------------------------------- /test/files/hoist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/hoist.js -------------------------------------------------------------------------------- /test/files/inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/inline.js -------------------------------------------------------------------------------- /test/files/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/main.js -------------------------------------------------------------------------------- /test/files/multi_var.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/multi_var.js -------------------------------------------------------------------------------- /test/files/non_fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/non_fs.js -------------------------------------------------------------------------------- /test/files/path_join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/path_join.js -------------------------------------------------------------------------------- /test/files/path_join_other_name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/path_join_other_name.js -------------------------------------------------------------------------------- /test/files/path_join_single_var.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/path_join_single_var.js -------------------------------------------------------------------------------- /test/files/readdir-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/readdir-sync.js -------------------------------------------------------------------------------- /test/files/readdir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/readdir.js -------------------------------------------------------------------------------- /test/files/robot.html: -------------------------------------------------------------------------------- 1 | beep boop 2 | -------------------------------------------------------------------------------- /test/files/scope-sentinel: -------------------------------------------------------------------------------- 1 | SCOPE_SENTINEL 2 | -------------------------------------------------------------------------------- /test/files/scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/scope.js -------------------------------------------------------------------------------- /test/files/separators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/separators.js -------------------------------------------------------------------------------- /test/files/separators.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/separators.txt -------------------------------------------------------------------------------- /test/files/tr.beep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/tr.beep -------------------------------------------------------------------------------- /test/files/tr.html: -------------------------------------------------------------------------------- 1 |

abc

2 | -------------------------------------------------------------------------------- /test/files/with_comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/files/with_comments.js -------------------------------------------------------------------------------- /test/hoist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/hoist.js -------------------------------------------------------------------------------- /test/inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/inline.js -------------------------------------------------------------------------------- /test/multi_var.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/multi_var.js -------------------------------------------------------------------------------- /test/non_fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/non_fs.js -------------------------------------------------------------------------------- /test/path_join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/path_join.js -------------------------------------------------------------------------------- /test/path_join_other_name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/path_join_other_name.js -------------------------------------------------------------------------------- /test/path_join_single_var.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/path_join_single_var.js -------------------------------------------------------------------------------- /test/readdir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/readdir.js -------------------------------------------------------------------------------- /test/require_resolve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/require_resolve.js -------------------------------------------------------------------------------- /test/require_resolve/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/require_resolve/main.js -------------------------------------------------------------------------------- /test/require_resolve/node_modules/aaa/wow.txt: -------------------------------------------------------------------------------- 1 | amaze 2 | -------------------------------------------------------------------------------- /test/scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/scope.js -------------------------------------------------------------------------------- /test/separators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/separators.js -------------------------------------------------------------------------------- /test/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/tr.js -------------------------------------------------------------------------------- /test/with_comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/brfs/HEAD/test/with_comments.js --------------------------------------------------------------------------------