UNPKG

@tsed/schema

Version:
11 lines (10 loc) 255 B
/** * @ignore */ export function mapAliasedProperties(value, alias) { return Object.entries(value).reduce((properties, [key, value]) => { key = alias.get(key) || key; properties[key] = value; return properties; }, {}); }