MCPcopy Create free account
hub / github.com/JohnWeisz/TypedJSON / stringifyAsSet

Method stringifyAsSet

src/parser.ts:296–302  ·  view source on GitHub ↗
(
        object: Set<T>,
        elementType: Serializable<T>,
        settings?: ITypedJSONSettings,
    )

Source from the content-addressed store, hash-verified

294 }
295
296 static stringifyAsSet<T>(
297 object: Set<T>,
298 elementType: Serializable<T>,
299 settings?: ITypedJSONSettings,
300 ): string {
301 return new TypedJSON(elementType, settings).stringifyAsSet(object);
302 }
303
304 static stringifyAsMap<K, V>(
305 object: Map<K, V>,

Callers 2

set.spec.tsFile · 0.80
set.spec.tsFile · 0.80

Calls 2

toPlainSetMethod · 0.95
stringifyMethod · 0.80

Tested by

no test coverage detected