Unify JS Docs - v0.1.0

Unify JS

Unify JS offers JavaScript utilities compatible with both browser and Node.js environment. Developed in TypeScript, it boasts full typing support and utilizes ES Modules, enabling efficient tree-shaking.

Installation

# npm
npm install @unify-js/utils

# or pnpm
pnpm add @unify-js/utils

Example

import { swap } from "@unify-js/utils";
const arr = [1, 2, 3];
swap(arr, 2, 1);

Generated using TypeDoc