gitextract_q4nl4_qg/ ├── .browserslistrc ├── .circleci/ │ └── config.yml ├── .codecov.yml ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .npmignore ├── .nvmrc ├── .prettierignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Release.md ├── WISHLIST.md ├── __test__/ │ ├── add-get-remove.test.js │ ├── buttons.test.js │ ├── create.test.js │ ├── defaults.test.js │ ├── filter.test.js │ ├── fixtures-fuzzysearch.js │ ├── fixtures-pagination.js │ ├── fixtures.js │ ├── fuzzysearch.test.js │ ├── item.test.js │ ├── off.test.js │ ├── on.test.js │ ├── pagination.test.js │ ├── parse.test.js │ ├── re-index.test.js │ ├── search-filter.test.js │ ├── search.test.js │ ├── show.test.js │ ├── sort.test.js │ ├── trigger.test.js │ ├── usage/ │ │ ├── amd.html │ │ ├── classic.html │ │ ├── fuzzy-search-pagination.html │ │ ├── main.js │ │ ├── require.js │ │ └── style.css │ ├── utils.classes.test.js │ └── utils.get-by-class.test.js ├── bower.json ├── dist/ │ └── list.js ├── docs/ │ ├── .bundle/ │ │ └── config │ ├── .ruby-version │ ├── CNAME │ ├── Gemfile │ ├── README.md │ ├── _config.yml │ ├── _data/ │ │ └── pkg.json │ ├── _examples/ │ │ ├── add-get-remove.html │ │ ├── data-attributes-custom-attributes.html │ │ ├── existing-list-add.html │ │ ├── existing-list.html │ │ ├── fuzzy-search.html │ │ ├── new-list.html │ │ ├── pagination.html │ │ └── table.html │ ├── _includes/ │ │ ├── author.html │ │ ├── carbon.html │ │ ├── codepen.html │ │ ├── examples/ │ │ │ └── annotated-example.html │ │ ├── javascripts/ │ │ │ └── vendor/ │ │ │ ├── bootstrap/ │ │ │ │ ├── tab.js │ │ │ │ ├── tooltip.js │ │ │ │ └── transition.js │ │ │ └── highlight.pack.js │ │ └── menu.html │ ├── _layouts/ │ │ └── default.html │ ├── _sass/ │ │ ├── _base.scss │ │ ├── _carbonads.scss │ │ ├── _docs.scss │ │ ├── _menu.scss │ │ ├── _mixins.scss │ │ ├── _normalize.scss │ │ └── vendor/ │ │ └── highlight/ │ │ └── xcode.scss │ ├── api.html │ ├── assets/ │ │ ├── css/ │ │ │ └── style.scss │ │ └── javascripts/ │ │ └── main.js │ ├── docs/ │ │ ├── fuzzysearch.html │ │ ├── index.html │ │ ├── item-api.html │ │ ├── pagination.html │ │ ├── plugins/ │ │ │ ├── build.html │ │ │ ├── fuzzysearch.html │ │ │ ├── index.html │ │ │ └── pagination.html │ │ └── search-sort.html │ ├── faq.html │ ├── feed.xml │ ├── index.html │ └── overview/ │ ├── changelog.html │ ├── contribute.html │ ├── download.html │ ├── index.html │ └── press.html ├── package.json ├── prettier.config.js ├── src/ │ ├── add-async.js │ ├── filter.js │ ├── fuzzy-search.js │ ├── index.js │ ├── item.js │ ├── pagination.js │ ├── parse.js │ ├── search.js │ ├── sort.js │ ├── templater.js │ └── utils/ │ ├── classes.js │ ├── events.js │ ├── extend.js │ ├── fuzzy.js │ ├── get-attribute.js │ ├── get-by-class.js │ ├── index-of.js │ ├── to-array.js │ └── to-string.js └── webpack.config.js