UNPKG

json-schema-library

Version:

Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation

7 lines (6 loc) 208 B
/** * @returns list with unique values only */ export function uniqueItems(list: (number | string | boolean | null | undefined)[]) { return list.filter((item, index) => list.indexOf(item) === index); }