Skip to content
This repository has been archived by the owner on Jun 2, 2022. It is now read-only.

roblox-ts/object-utils

Repository files navigation

@rbxts/object-utils

Polyfills for Object functions

import Object from "@rbxts/object-utils";

// now use Object like you could before!
const v = Object.assign({}, { x: 1 }, { y: 2 }, { z: 3 });
print(v.x, v.y, v.z);