You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Converts shallowly an object to a record. If the object has a non-const value, a TypeError will be thrown.
## `Record.isRecord(value) -> boolean`
Checks whether the parameter is either a Record primitive or Record wrapper.
## `Record.assign(...args: Record[]) -> Record`
Merges all records passed as arguments into one **new** record returned by the function. The latest argument will override arguments before when merging.