liusuyi
2023-04-24 4737f1e038743ced243c9e52423404d9034d6107
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// ========================
// Debugging Helpers
// ========================
 
export { warning } from './warning'
 
// ========================
// DOM Utilities
// ========================
 
export { onLeftClick } from './onLeftClick'
export { scrollIntoView } from './scrollIntoView'
export { debounce } from './debounce'
export { watchSize } from './watchSize'
export { setupResizeAndScrollEventListeners } from './setupResizeAndScrollEventListeners'
 
// ========================
// Language Helpers
// ========================
 
export { isNaN } from './isNaN'
export { isPromise } from './isPromise'
export { once } from './once'
export { noop } from './noop'
export { identity } from './identity'
export { constant } from './constant'
export { createMap } from './createMap'
export { deepExtend } from './deepExtend'
export { last } from './last'
export { includes } from './includes'
export { find } from './find'
export { removeFromArray } from './removeFromArray'
 
// ========================
// Other Utilities
// ========================
 
export { quickDiff } from './quickDiff'