2024-11-05 10:07:40 +08:00

5 lines
84 B
TypeScript

export function addSetEntry(set: any, value: any) {
set.add(value)
return set
}