SYMBOL INDEX (193 symbols across 117 files) FILE: src/attributes/add_class.ts type Cash (line 5) | interface Cash { FILE: src/attributes/attr.ts type Cash (line 7) | interface Cash { function attr (line 18) | function attr ( this: Cash, attr?: string | Record, valu... FILE: src/attributes/has_class.ts type Cash (line 7) | interface Cash { FILE: src/attributes/prop.ts type Cash (line 7) | interface Cash { FILE: src/attributes/remove_attr.ts type Cash (line 6) | interface Cash { FILE: src/attributes/remove_class.ts type Cash (line 6) | interface Cash { FILE: src/attributes/remove_prop.ts type Cash (line 6) | interface Cash { FILE: src/attributes/toggle_class.ts type Cash (line 8) | interface Cash { FILE: src/collection/add.ts type Cash (line 6) | interface Cash { FILE: src/collection/each.ts type Cash (line 5) | interface Cash { FILE: src/collection/eq.ts type Cash (line 5) | interface Cash { FILE: src/collection/filter.ts type Cash (line 8) | interface Cash { FILE: src/collection/first.ts type Cash (line 5) | interface Cash { FILE: src/collection/get.ts type Cash (line 6) | interface Cash { FILE: src/collection/index.ts type Cash (line 8) | interface Cash { FILE: src/collection/last.ts type Cash (line 5) | interface Cash { FILE: src/collection/map.ts type MapCallback (line 5) | type MapCallback = ( this: T, index: number, ele: T ) => Ele; type Cash (line 7) | interface Cash { FILE: src/collection/slice.ts type Cash (line 5) | interface Cash { FILE: src/core/attempt.ts function attempt (line 2) | function attempt ( fn: (( arg?: U ) => T), arg?: U ): T | U { FILE: src/core/camel_case.ts function camelCase (line 6) | function camelCase ( str: string ): string { FILE: src/core/cash.ts class Cash (line 5) | class Cash { method constructor (line 7) | constructor ( selector?: Selector, context?: Context | Cash ) { method init (line 49) | init ( selector?: Selector, context?: Context | Cash ) { FILE: src/core/each.ts type EachArrayCallback (line 5) | type EachArrayCallback = ( this: T, index: number, ele: T ) => any; type EachObjectCallback (line 6) | type EachObjectCallback = ( this: T, key: string, value: T ) => any; type CashStatic (line 8) | interface CashStatic { function each (line 15) | function each | PlainObject = ArrayLike>... FILE: src/core/extend.ts type CashStatic (line 5) | interface CashStatic { type Cash (line 12) | interface Cash { function extend (line 16) | function extend ( ...sources: any[] ) { FILE: src/core/filtered.ts function filtered (line 4) | function filtered ( collection: Cash, comparator?: Comparator ): Cash { FILE: src/core/find.ts function find (line 4) | function find ( selector: string, context: Ele ): ArrayLike { FILE: src/core/get_compare_function.ts function getCompareFunction (line 5) | function getCompareFunction ( comparator?: Comparator ): (( i: number, e... FILE: src/core/get_split_values.ts function getSplitValues (line 6) | function getSplitValues ( str: string ) { FILE: src/core/guid.ts type CashStatic (line 4) | interface CashStatic { FILE: src/core/matches.ts function matches (line 4) | function matches ( ele: any, selector: string ): boolean { FILE: src/core/parse_html.ts type CashStatic (line 8) | interface CashStatic { function parseHTML (line 28) | function parseHTML ( html: string ): EleLoose[] { FILE: src/core/pluck.ts type PluckCallback (line 6) | type PluckCallback = ( ele: T ) => ArrayLike; function pluck (line 8) | function pluck = ArrayLike> ( arr: U, prop:... FILE: src/core/type_checking.ts type CashStatic (line 5) | interface CashStatic { function isCash (line 13) | function isCash ( value: unknown ): value is Cash { function isWindow (line 19) | function isWindow ( value: unknown ): value is Window { function isDocument (line 25) | function isDocument ( value: unknown ): value is Document { function isDocumentFragment (line 31) | function isDocumentFragment ( value: unknown ): value is DocumentFragment { function isElement (line 37) | function isElement ( value: unknown ): value is HTMLElement { function isText (line 43) | function isText ( value: unknown ): value is Text { function isBoolean (line 49) | function isBoolean ( value: unknown ): value is boolean { function isFunction (line 55) | function isFunction ( value: unknown ): value is Function { function isString (line 61) | function isString ( value: unknown ): value is string { function isUndefined (line 67) | function isUndefined ( value: unknown ): value is undefined { function isNull (line 73) | function isNull ( value: unknown ): value is null { function isNumeric (line 79) | function isNumeric ( value: unknown ): boolean { function isPlainObject (line 85) | function isPlainObject ( value: unknown ): value is PlainObject { FILE: src/core/types.ts type Event (line 2) | interface Event { type Cash (line 12) | interface Cash { type CashStatic (line 20) | interface CashStatic { type falsy (line 24) | type falsy = undefined | null | false | 0 | ''; type Ele (line 26) | type Ele = Window | Document | HTMLElement | Element | Node; type EleLoose (line 27) | type EleLoose = HTMLElement & Element & Node; type Selector (line 28) | type Selector = falsy | string | Function | HTMLCollection | NodeList | ... type Comparator (line 29) | type Comparator = string | Ele | Cash | (( this: EleLoose, index: number... type Context (line 30) | type Context = Document | HTMLElement | Element | string; type PlainObject (line 32) | type PlainObject = Record; type EventCallback (line 34) | type EventCallback = { FILE: src/core/unique.ts type CashStatic (line 5) | interface CashStatic { function unique (line 9) | function unique ( arr: ArrayLike ): ArrayLike { FILE: src/css/css.ts type Cash (line 10) | interface Cash { function css (line 19) | function css ( this: Cash, prop: string | Record, value?:... FILE: src/data/helpers/get_data.ts function getData (line 7) | function getData ( ele: EleLoose, key: string ): any { FILE: src/data/helpers/set_data.ts function setData (line 5) | function setData ( ele: EleLoose, key: string, value: any ): void { FILE: src/dimensions/helpers/get_document_dimension.ts function getDocumentDimension (line 2) | function getDocumentDimension ( doc: Document, dimension: 'Width' | 'Hei... FILE: src/dimensions/helpers/get_extra_space.ts function getExtraSpace (line 4) | function getExtraSpace ( ele: EleLoose, xAxis?: boolean ): number { FILE: src/dimensions/inner_outer.ts type Cash (line 8) | interface Cash { FILE: src/dimensions/normal.ts type Cash (line 11) | interface Cash { FILE: src/effects/helpers/get_default_display.ts function getDefaultDisplay (line 6) | function getDefaultDisplay ( tagName: string ): string { FILE: src/effects/helpers/is_hidden.ts function isHidden (line 4) | function isHidden ( ele: EleLoose ): boolean { FILE: src/effects/hide.ts type Cash (line 5) | interface Cash { FILE: src/effects/show.ts type Cash (line 5) | interface Cash { FILE: src/effects/toggle.ts type Cash (line 9) | interface Cash { FILE: src/events/helpers/add_event.ts function addEvent (line 5) | function addEvent ( ele: EleLoose, name: string, namespaces: string[], s... FILE: src/events/helpers/get_event_name_bubbling.ts function getEventNameBubbling (line 4) | function getEventNameBubbling ( name: string ): string { FILE: src/events/helpers/get_events_cache.ts function getEventsCache (line 4) | function getEventsCache ( ele: EleLoose ): { [event: string]: [string[],... FILE: src/events/helpers/has_namespaces.ts function hasNamespaces (line 2) | function hasNamespaces ( ns1: string[], ns2?: string[] ): boolean { FILE: src/events/helpers/parse_event_name.ts function parseEventName (line 4) | function parseEventName ( eventName: string ): [string, string[]] { FILE: src/events/helpers/remove_event.ts function removeEvent (line 6) | function removeEvent ( ele: EleLoose, name?: string, namespaces?: string... FILE: src/events/off.ts type Cash (line 10) | interface Cash { FILE: src/events/on.ts type Cash (line 15) | interface Cash { function on (line 34) | function on ( this: Cash, eventFullName: Record |... FILE: src/events/one.ts type Cash (line 5) | interface Cash { function one (line 24) | function one ( this: Cash, eventFullName: Record ... FILE: src/events/ready.ts type Cash (line 5) | interface Cash { FILE: src/events/trigger.ts type Cash (line 10) | interface Cash { FILE: src/extra/get_script.ts type CashStatic (line 5) | interface CashStatic { FILE: src/extra/shorthands.ts type shorthandEventName (line 7) | type shorthandEventName = 'blur' | 'focus' | 'focusin' | 'focusout' | 'r... type Cash (line 9) | interface Cash { FILE: src/forms/helpers/get_value.ts function getValue (line 5) | function getValue ( ele: EleLoose ): string | string[] { FILE: src/forms/helpers/query_encode.ts function queryEncode (line 4) | function queryEncode ( prop: string, value: string ): string { FILE: src/forms/serialize.ts type Cash (line 8) | interface Cash { FILE: src/forms/val.ts type Cash (line 8) | interface Cash { function val (line 15) | function val ( this: Cash, value?: string | string[] ) { FILE: src/manipulation/after.ts type Cash (line 5) | interface Cash { FILE: src/manipulation/append.ts type Cash (line 5) | interface Cash { FILE: src/manipulation/append_to.ts type Cash (line 5) | interface Cash { FILE: src/manipulation/before.ts type Cash (line 5) | interface Cash { FILE: src/manipulation/clone.ts type Cash (line 5) | interface Cash { FILE: src/manipulation/detach.ts type Cash (line 6) | interface Cash { FILE: src/manipulation/empty.ts type Cash (line 5) | interface Cash { FILE: src/manipulation/helpers/eval_scripts.ts function evalScripts (line 10) | function evalScripts ( node: Node, doc: Document ): void { FILE: src/manipulation/helpers/insert_element.ts function insertElement (line 4) | function insertElement ( anchor: EleLoose, target: EleLoose, left?: bool... FILE: src/manipulation/helpers/insert_selectors.ts function insertSelectors (line 4) | function insertSelectors = ArrayLike