uniqify

1.0.2 • Public • Published

A utility for creating arrays with unique elements in JavaScript.

Table of Contents

Installation

Install UniQify using npm: npm install uniqify

Usage

const uniqify = require('uniqify');

const inputArray = [1, 2, 3, 4, 1, 2, 5]; const result = uniqify(inputArray); console.log(result); // Output: [1, 2, 3, 4, 5]

Package Sidebar

Install

npm i uniqify

Weekly Downloads

1

Version

1.0.2

License

MIT

Unpacked Size

3.26 kB

Total Files

5

Last publish

Collaborators

  • arsendoman