array-uniq

WebJar for array-uniq

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

array-uniq
Last Version

Last Version

1.0.3
Release Date

Release Date

Type

Type

jar
Description

Description

array-uniq
WebJar for array-uniq
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/sindresorhus/array-uniq

Download array-uniq

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/array-uniq/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>array-uniq</artifactId>
    <version>1.0.3</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/array-uniq/
implementation 'org.webjars.npm:array-uniq:1.0.3'
// https://jarcasting.com/artifacts/org.webjars.npm/array-uniq/
implementation ("org.webjars.npm:array-uniq:1.0.3")
'org.webjars.npm:array-uniq:jar:1.0.3'
<dependency org="org.webjars.npm" name="array-uniq" rev="1.0.3">
  <artifact name="array-uniq" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='array-uniq', version='1.0.3')
)
libraryDependencies += "org.webjars.npm" % "array-uniq" % "1.0.3"
[org.webjars.npm/array-uniq "1.0.3"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

array-uniq Build Status

Create an array without duplicates

Install

$ npm install array-uniq

Usage

const arrayUniq = require('array-uniq');

arrayUniq([1, 1, 2, 3, 3]);
//=> [1, 2, 3]

arrayUniq(['foo', 'foo', 'bar', 'foo']);
//=> ['foo', 'bar']

Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.

Versions

Version
1.0.3
1.0.2