ArrayUnique Op
filters an array for duplicate items and returns all unique items in a new array
Summary (oneliner)
when given an array with "non" unique items, like:
const a = [
"maus",
"hund",
"maus",
"katze",
"maus",
];
will return only the unique values in that array, as a new array, so:
const a = [
"hund",
"katze",
"maus",
];
Full Name
- Ops.Array.ArrayUnique
- Core Op - Official cables op
- MIT
Documentation (markdown)
Issues
Example patch id
Youtube ids (comma seperated)
Op Licence
Caniuse query
INPUT PORTS
array (Array)
input array
Format index (Number: integer)
choose between 3 different unique modes: x, xy, xyz
Format (String)
choose between 3 different unique modes: x, xy, xyz
OUTPUT PORTS
arrayOut (Array)
deduped array output
Array Length Out (Number)
length of the new array