The @vt7/utils
package comprises common utilities and functions to streamline application development.
You can install @vt7/utils
using npm or yarn:
# npm
npm install @vt7/utils
# yarn
yarn add @vt7/utils
# pnpm
pnpm install @vt7/utils
# bun
bun install @vt7/utils
Import:
// ESM
import { compact } from "@vt7/utils";
// CommonJS
const { compact } = require("@vt7/utils");