uniquify.js

1.2.1 • Public • Published

uniquify.js

Lightweight package to parse and remove duplicate elements of a standard JavaScript array.

Installation

// Using NPM
npm install uniquify.js

// Using Yarn
yarn add uniquify.js

Usage

// Using Require
const { uniquify } = require('uniquify.js');

// Using Import
import { uniquify } from 'uniquify.js';

Example

let myNums = [1, 2, 3, 1, 4, 1, 2, 5, 3, 4];
let uniqueNums = uniquify(myNums);
console.log(uniqueNums); // -> [1, 2, 3, 4, 5]

Package Sidebar

Install

npm i uniquify.js

Weekly Downloads

2

Version

1.2.1

License

MIT

Unpacked Size

11.2 kB

Total Files

11

Last publish

Collaborators

  • shrysjain