browser-utily-tools
Version:
Utility tools in the browser environment
12 lines (11 loc) • 604 B
JavaScript
/**
* @LI: 使用自动导入
* @description 由于未使用build工具, 导入时需要带上后缀 '.js'
*/
export { adapterDataFormatSync, adapterDataListFormatSync } from "./src/useAdapter.js";
export { types, getSupportedType, generateEventHandler, enhanceType } from "./src/useTypes.js";
export { convertQueryStringToObject, convertObjectToQueryString } from "./src/useQueryString.js";
export { debounce } from "./src/useDebounce.js";
export { throttle } from "./src/useThrottle.js";
export { listToTree } from "./src/useListToTree.js";
export { deepFirstSearch } from "./src/useTreeToList.js";