UNPKG

civ7-modding-tools

Version:
9 lines (8 loc) 235 B
export function fill<T>(this: any, payload: Partial<T> = {}) { for (const [key, value] of Object.entries(payload)) { if (this.hasOwnProperty(key)) { this[key] = value; } } return this; }