UNPKG

vremel

Version:

JavaScript date utility library for Temporal API

7 lines (6 loc) 181 B
/** @internal */ export function createRecord<V>( object: Record<string, V> = {}, ): Record<string, V> { return Object.assign(Object.create(null) as Record<string, V>, object); }