├── .gitignore ├── LICENSE ├── README.md ├── commit.md ├── log.ts ├── package.json ├── rollup.config.js ├── src ├── animation │ ├── animation.js │ ├── imageloader.js │ └── timeline.js ├── index.ts └── utils │ ├── assets.ts │ ├── async │ └── task.ts │ ├── base.ts │ ├── cache │ ├── BaseCache.ts │ ├── BaseLocalStorage.ts │ ├── LocalStorageBrowser.ts │ └── LocalStorageMiniApp.ts │ ├── car.ts │ ├── city │ └── cityList.ts │ ├── client.ts │ ├── common.ts │ ├── css.ts │ ├── date.ts │ ├── event.ts │ ├── file.ts │ ├── filterdata │ └── index.ts │ ├── idcard.ts │ ├── locate.ts │ ├── math.ts │ ├── miniprogram.ts │ ├── random │ └── number.ts │ ├── string.ts │ ├── tree.ts │ ├── url.ts │ └── verification.ts ├── tsconfig.json └── types └── index.d.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/README.md -------------------------------------------------------------------------------- /commit.md: -------------------------------------------------------------------------------- 1 | 2022-12-03T08:16:00+08:00 2 | 随机数:50236 3 | 提交次数:1 -------------------------------------------------------------------------------- /log.ts: -------------------------------------------------------------------------------- 1 | const log = "" -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/animation/animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/animation/animation.js -------------------------------------------------------------------------------- /src/animation/imageloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/animation/imageloader.js -------------------------------------------------------------------------------- /src/animation/timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/animation/timeline.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { randomUniqueArr } from "./utils/base.ts" 2 | -------------------------------------------------------------------------------- /src/utils/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/assets.ts -------------------------------------------------------------------------------- /src/utils/async/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/async/task.ts -------------------------------------------------------------------------------- /src/utils/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/base.ts -------------------------------------------------------------------------------- /src/utils/cache/BaseCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/cache/BaseCache.ts -------------------------------------------------------------------------------- /src/utils/cache/BaseLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/cache/BaseLocalStorage.ts -------------------------------------------------------------------------------- /src/utils/cache/LocalStorageBrowser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/cache/LocalStorageBrowser.ts -------------------------------------------------------------------------------- /src/utils/cache/LocalStorageMiniApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/cache/LocalStorageMiniApp.ts -------------------------------------------------------------------------------- /src/utils/car.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/car.ts -------------------------------------------------------------------------------- /src/utils/city/cityList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/city/cityList.ts -------------------------------------------------------------------------------- /src/utils/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/client.ts -------------------------------------------------------------------------------- /src/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/common.ts -------------------------------------------------------------------------------- /src/utils/css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/css.ts -------------------------------------------------------------------------------- /src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/date.ts -------------------------------------------------------------------------------- /src/utils/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/event.ts -------------------------------------------------------------------------------- /src/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/file.ts -------------------------------------------------------------------------------- /src/utils/filterdata/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/filterdata/index.ts -------------------------------------------------------------------------------- /src/utils/idcard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/idcard.ts -------------------------------------------------------------------------------- /src/utils/locate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/locate.ts -------------------------------------------------------------------------------- /src/utils/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/math.ts -------------------------------------------------------------------------------- /src/utils/miniprogram.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/random/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/random/number.ts -------------------------------------------------------------------------------- /src/utils/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/string.ts -------------------------------------------------------------------------------- /src/utils/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/tree.ts -------------------------------------------------------------------------------- /src/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/url.ts -------------------------------------------------------------------------------- /src/utils/verification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/src/utils/verification.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeluosiyu/toa-tools/HEAD/types/index.d.ts --------------------------------------------------------------------------------