UNPKG

reactant-module

Version:

A module model for Reactant

15 lines (14 loc) 243 B
export function assign( target: object, key: string | symbol, value: any, options?: object ) { Object.defineProperty(target, key, { configurable: true, writable: true, enumerable: true, value, ...options, }); }