Introduction

Introduction

utilict is the JavaScript utility library for performing operations on all data types and data structures. .

Installation

Using npm:

npm i utilict

Using yarn:

yarn add utilict

Usage

You can directly use these functions from the utilict library.

import { reverseNumber } from "utilict";
 
const number = 5698;
reverseNumber(number); // Returns the result 8965