├── .clang-format ├── .editorconfig ├── .gitattributes ├── .github └── PULL_REQUEST_TEMPLATE ├── .gitignore ├── .npmignore ├── .travis.yml ├── .vscode ├── settings.json └── tasks.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src ├── index-next.ts ├── index.ts ├── iteration.ts ├── modification.ts ├── predicates.ts ├── test │ ├── dom5_test.ts │ ├── iteration_test.ts │ ├── static │ │ └── multiple-comments.html │ ├── utils.ts │ └── walking_test.ts ├── util.ts └── walking.ts ├── tsconfig.json └── tslint.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /lib 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/package.json -------------------------------------------------------------------------------- /src/index-next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/src/index-next.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/iteration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/src/iteration.ts -------------------------------------------------------------------------------- /src/modification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/src/modification.ts -------------------------------------------------------------------------------- /src/predicates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/src/predicates.ts -------------------------------------------------------------------------------- /src/test/dom5_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/src/test/dom5_test.ts -------------------------------------------------------------------------------- /src/test/iteration_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/src/test/iteration_test.ts -------------------------------------------------------------------------------- /src/test/static/multiple-comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/src/test/static/multiple-comments.html -------------------------------------------------------------------------------- /src/test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/src/test/utils.ts -------------------------------------------------------------------------------- /src/test/walking_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/src/test/walking_test.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/src/util.ts -------------------------------------------------------------------------------- /src/walking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/src/walking.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/dom5/HEAD/tslint.json --------------------------------------------------------------------------------