1.0.4 • Published 5 years ago

@rbxts/object-utils v1.0.4

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

@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);