5 lines
84 B
TypeScript
5 lines
84 B
TypeScript
export function addSetEntry(set: any, value: any) {
|
|
set.add(value)
|
|
return set
|
|
}
|