├── .codeclimate.yml ├── .eslintignore ├── .eslintrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── dist ├── dragonbinder.js ├── dragonbinder.min.js ├── dragonbinder.min.js.map └── dragonbinder.mjs ├── docma.json ├── docs ├── content │ ├── contributing.html │ └── readme.html ├── css │ ├── docma.css │ └── styles.css ├── img │ ├── tree-deep.png │ ├── tree-first.png │ ├── tree-folded.png │ ├── tree-last.png │ ├── tree-node.png │ ├── tree-parent.png │ └── tree-space.png ├── index.html └── js │ ├── app.min.js │ ├── docma-web.js │ ├── highlight.pack.js │ └── tippy.all.min.js ├── lib └── index.js ├── package.json ├── rollup.js └── tests ├── index_test.js ├── test.cjs ├── test.min.js └── test.mjs /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/README.md -------------------------------------------------------------------------------- /dist/dragonbinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/dist/dragonbinder.js -------------------------------------------------------------------------------- /dist/dragonbinder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/dist/dragonbinder.min.js -------------------------------------------------------------------------------- /dist/dragonbinder.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/dist/dragonbinder.min.js.map -------------------------------------------------------------------------------- /dist/dragonbinder.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/dist/dragonbinder.mjs -------------------------------------------------------------------------------- /docma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/docma.json -------------------------------------------------------------------------------- /docs/content/contributing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/docs/content/contributing.html -------------------------------------------------------------------------------- /docs/content/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/docs/content/readme.html -------------------------------------------------------------------------------- /docs/css/docma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/docs/css/docma.css -------------------------------------------------------------------------------- /docs/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/docs/css/styles.css -------------------------------------------------------------------------------- /docs/img/tree-deep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/docs/img/tree-deep.png -------------------------------------------------------------------------------- /docs/img/tree-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/docs/img/tree-first.png -------------------------------------------------------------------------------- /docs/img/tree-folded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/docs/img/tree-folded.png -------------------------------------------------------------------------------- /docs/img/tree-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/docs/img/tree-last.png -------------------------------------------------------------------------------- /docs/img/tree-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/docs/img/tree-node.png -------------------------------------------------------------------------------- /docs/img/tree-parent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/docs/img/tree-parent.png -------------------------------------------------------------------------------- /docs/img/tree-space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/docs/img/tree-space.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/docs/js/app.min.js -------------------------------------------------------------------------------- /docs/js/docma-web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/docs/js/docma-web.js -------------------------------------------------------------------------------- /docs/js/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/docs/js/highlight.pack.js -------------------------------------------------------------------------------- /docs/js/tippy.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/docs/js/tippy.all.min.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/package.json -------------------------------------------------------------------------------- /rollup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/rollup.js -------------------------------------------------------------------------------- /tests/index_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/tests/index_test.js -------------------------------------------------------------------------------- /tests/test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/tests/test.cjs -------------------------------------------------------------------------------- /tests/test.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/tests/test.min.js -------------------------------------------------------------------------------- /tests/test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masquerade-Circus/dragonbinder/HEAD/tests/test.mjs --------------------------------------------------------------------------------