Skip to content

UtilsJavaScript工具库

大小不到10kb且具备强类型

安装

sh
npm install @hacxy/utils
sh
yarn add @hacxy/utils
sh
pnpm add @hacxy/utils
sh
bun add @hacxy/utils

使用

ts
import { arrayIncludes } from '@hacxy/utils';

const arr = [1, 2, 3];
arrayIncludes(arr, 1); // => true;

MIT Licensed