v1.0.2
An ES (JavaScript & TypeScript) module to return unique array elements without any duplicated elements by ignore their reference points.
Attributes
Includes Deno configuration
Repository
Current version released
a year ago
Dependencies
std
Unique Array (Deno)
Releases | Latest () | Pre () |
---|---|---|
π Description
A Deno module to return unique array elements without any duplicated elements by ignore their reference points.
π Other Edition:
π Documentation
Getting Started
- Deno >= v1.34.0
import uniqueArray from "<URL>";// Default Import
Domain / Registry | URL |
---|---|
Deno Land | https://deno.land/x/unique_array[@<Tag>]/mod.ts |
DenoPKG | https://denopkg.com/hugoalh-studio/unique-array-deno[@<Tag>]/mod.ts |
GitHub Raw * | https://raw.githubusercontent.com/hugoalh-studio/unique-array-deno/<Tag>/mod.ts |
Pax | https://pax.deno.dev/hugoalh-studio/unique-array-deno[@<Tag>]/mod.ts |
*: Must provide a tag.
API
Function
uniqueArray<T>(item: T[]): T[];
Example
uniqueArray([{ foo: "bar" }, { foo: "bar" }, { bar: "gaz" }]);
//=> [{ foo: "bar" }, { bar: "gaz" }]