├── .gitignore ├── LICENSE.BSD ├── README.md ├── gulpfile.js ├── package.json ├── src └── index.js └── test ├── replace.js └── traverse.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | /lib/ 4 | /powered-test/ 5 | -------------------------------------------------------------------------------- /LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Constellation/shift-traverse-js/HEAD/LICENSE.BSD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Constellation/shift-traverse-js/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Constellation/shift-traverse-js/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Constellation/shift-traverse-js/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Constellation/shift-traverse-js/HEAD/src/index.js -------------------------------------------------------------------------------- /test/replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Constellation/shift-traverse-js/HEAD/test/replace.js -------------------------------------------------------------------------------- /test/traverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Constellation/shift-traverse-js/HEAD/test/traverse.js --------------------------------------------------------------------------------