gitextract_03ob_z96/ ├── .editorconfig ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── .gitignore ├── bump.json ├── changelog.md ├── docs/ │ ├── extending_cash.md │ ├── migration_guide.md │ └── partial_builds.md ├── license ├── package.json ├── readme.md ├── resources/ │ ├── banner/ │ │ └── banner.afphoto │ └── logo/ │ └── logo.psd ├── src/ │ ├── attributes/ │ │ ├── add_class.ts │ │ ├── attr.ts │ │ ├── has_class.ts │ │ ├── helpers/ │ │ │ └── variables.ts │ │ ├── prop.ts │ │ ├── remove_attr.ts │ │ ├── remove_class.ts │ │ ├── remove_prop.ts │ │ └── toggle_class.ts │ ├── collection/ │ │ ├── add.ts │ │ ├── each.ts │ │ ├── eq.ts │ │ ├── filter.ts │ │ ├── first.ts │ │ ├── get.ts │ │ ├── index.ts │ │ ├── last.ts │ │ ├── map.ts │ │ └── slice.ts │ ├── core/ │ │ ├── attempt.ts │ │ ├── camel_case.ts │ │ ├── cash.ts │ │ ├── each.ts │ │ ├── extend.ts │ │ ├── filtered.ts │ │ ├── find.ts │ │ ├── get_compare_function.ts │ │ ├── get_split_values.ts │ │ ├── guid.ts │ │ ├── matches.ts │ │ ├── parse_html.ts │ │ ├── pluck.ts │ │ ├── type_checking.ts │ │ ├── types.ts │ │ ├── unique.ts │ │ └── variables.ts │ ├── css/ │ │ ├── css.ts │ │ └── helpers/ │ │ ├── compute_style.ts │ │ ├── compute_style_int.ts │ │ ├── get_prefixed_prop.ts │ │ ├── get_suffixed_value.ts │ │ ├── is_css_variable.ts │ │ └── variables.ts │ ├── data/ │ │ ├── data.ts │ │ └── helpers/ │ │ ├── get_data.ts │ │ └── set_data.ts │ ├── dimensions/ │ │ ├── helpers/ │ │ │ ├── get_document_dimension.ts │ │ │ └── get_extra_space.ts │ │ ├── inner_outer.ts │ │ └── normal.ts │ ├── effects/ │ │ ├── helpers/ │ │ │ ├── get_default_display.ts │ │ │ ├── is_hidden.ts │ │ │ └── variables.ts │ │ ├── hide.ts │ │ ├── show.ts │ │ └── toggle.ts │ ├── events/ │ │ ├── helpers/ │ │ │ ├── add_event.ts │ │ │ ├── get_event_name_bubbling.ts │ │ │ ├── get_events_cache.ts │ │ │ ├── has_namespaces.ts │ │ │ ├── parse_event_name.ts │ │ │ ├── remove_event.ts │ │ │ └── variables.ts │ │ ├── off.ts │ │ ├── on.ts │ │ ├── one.ts │ │ ├── ready.ts │ │ └── trigger.ts │ ├── export_cjs.ts │ ├── export_esm.ts │ ├── extra/ │ │ ├── get_script.ts │ │ └── shorthands.ts │ ├── forms/ │ │ ├── helpers/ │ │ │ ├── get_value.ts │ │ │ └── query_encode.ts │ │ ├── serialize.ts │ │ └── val.ts │ ├── manipulation/ │ │ ├── after.ts │ │ ├── append.ts │ │ ├── append_to.ts │ │ ├── before.ts │ │ ├── clone.ts │ │ ├── detach.ts │ │ ├── empty.ts │ │ ├── helpers/ │ │ │ ├── eval_scripts.ts │ │ │ ├── insert_element.ts │ │ │ └── insert_selectors.ts │ │ ├── html.ts │ │ ├── insert_after.ts │ │ ├── insert_before.ts │ │ ├── prepend.ts │ │ ├── prepend_to.ts │ │ ├── remove.ts │ │ ├── replace_all.ts │ │ ├── replace_with.ts │ │ ├── text.ts │ │ ├── unwrap.ts │ │ ├── wrap.ts │ │ ├── wrap_all.ts │ │ └── wrap_inner.ts │ ├── methods.ts │ ├── offset/ │ │ ├── offset.ts │ │ ├── offset_parent.ts │ │ └── position.ts │ └── traversal/ │ ├── children.ts │ ├── closest.ts │ ├── contents.ts │ ├── find.ts │ ├── has.ts │ ├── is.ts │ ├── next.ts │ ├── next_all.ts │ ├── next_until.ts │ ├── not.ts │ ├── parent.ts │ ├── parents.ts │ ├── parents_until.ts │ ├── prev.ts │ ├── prev_all.ts │ ├── prev_until.ts │ └── siblings.ts ├── tasks/ │ └── build.sh ├── test/ │ ├── helpers.js │ ├── index.html │ ├── jquery_patch.js │ ├── jquery_reverse_patch.js │ ├── modules/ │ │ ├── attributes.js │ │ ├── collection.js │ │ ├── core.js │ │ ├── css.js │ │ ├── data.js │ │ ├── dimensions.js │ │ ├── effects.js │ │ ├── events.js │ │ ├── forms.js │ │ ├── manipulation.js │ │ ├── offset.js │ │ ├── traversal.js │ │ └── utilities.js │ └── playwright.mjs └── tsconfig.json