UNPKG

@tsed/schema

Version:
11 lines (10 loc) 295 B
import { JsonMap } from "../domain/JsonMap.js"; /** * @ignore */ export function toJsonMapCollection(content, klass = JsonMap) { return Object.entries(content).reduce((content, [key, value]) => { content.set(key, new klass(value)); return content; }, new JsonMap()); }