Getting Started
Table of Contents
Introduction
# Using npm
npm install @check-engineering/ts-utils
# Using yarn
yarn add @check-engineering/ts-utils
# Using pnpm
pnpm install @check-engineering/ts-utilsLast updated
# Using npm
npm install @check-engineering/ts-utils
# Using yarn
yarn add @check-engineering/ts-utils
# Using pnpm
pnpm install @check-engineering/ts-utilsLast updated
// Import the specific method category you need
import { chunk, formatDate, capitalize } from "check-engineering/ts-utils/array.ts";
import { roundNum, clampNum } from "check-engineering/ts-utils/number.ts";
// OR
// Import all utilities
import { formatDate, roundNum } from "check-engineering/ts-utils";