You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
822 B
43 lines
822 B
// @ts-nocheck
|
|
// validator
|
|
export * from './isString'
|
|
export * from './isNumber'
|
|
export * from './isNumeric'
|
|
export * from './isDef'
|
|
export * from './isFunction'
|
|
export * from './isObject'
|
|
export * from './isPromise'
|
|
export * from './isBase64'
|
|
|
|
export * from './hasOwn'
|
|
|
|
// 单位转换
|
|
export * from './addUnit'
|
|
export * from './unitConvert'
|
|
export * from './toNumber'
|
|
|
|
export * from './random'
|
|
export * from './range'
|
|
export * from './fillZero'
|
|
|
|
// image
|
|
export * from './base64ToPath'
|
|
export * from './pathToBase64'
|
|
export * from './exif'
|
|
|
|
// canvas
|
|
export * from './canIUseCanvas2d'
|
|
|
|
// page
|
|
export * from './getCurrentPage'
|
|
|
|
// dom
|
|
export * from './getRect'
|
|
export * from './selectComponent'
|
|
export * from './createAnimation'
|
|
|
|
// delay
|
|
export * from './sleep'
|
|
export * from './debounce'
|
|
export * from './throttle'
|
|
|
|
|