UNPKG

@ryanuo/utils

Version:

提供多种实用工具函数,涵盖算法、浏览器操作、网络请求等多个领域

36 lines (35 loc) 642 B
/** * @module utils */ export * from './common/base'; export * from './common/is'; export * from './common/tools'; export * from './common/date'; /** * @module browser */ export * from './browser/element'; export * from './browser/storage'; export * from './browser/url'; export * from './browser/download'; /** * @module algorithm */ export * from './algorithm'; /** * @module finance */ export * from './finance/calculator'; export * from './finance/amount'; /** * @module graphics */ export * from './graphics/color'; /** * @module network */ export * from './network/http'; /** * @module ai */ export * from './ai/machine';