@rbxts/lua-table-utils
v1.2.0
Published
A helper package for Lua tables, adding certain abstraction layers to repetitive patterns.
Downloads
2
Readme
Lua Table Utils
A helper package for Lua tables, adding utilities to avoid some of the nonsense that rbxts can give you.
Example usage
import { Unpacker } from "@rbxts/lua-table-utils";
export class AssaultRifleServer extends Mixin(BaseWeaponServer, AssaultRifle) {
constructor(...args: unknown[]) {
/** Normally this would error out with ...args, but won't with Unpack. */
super(Unpacker.Unpack(args));
print("Success");
}
}