MCPcopy Create free account
hub / github.com/HelloCSV/HelloCSV / removeDuplicates

Function removeDuplicates

src/utils/index.ts:41–43  ·  view source on GitHub ↗
(array: any[])

Source from the content-addressed store, hash-verified

39}
40
41export const removeDuplicates = (array: any[]) => {
42 return [...new Set(array)];
43};
44
45export function clamp(value: number, min: number, max: number) {
46 return Math.min(Math.max(value, min), max);

Callers 2

errorFilterOptionFunction · 0.90
SheetDataEditorActionsFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected