@rbxts/lua-table-utils
TypeScript icon, indicating that this package has built-in type declarations

1.2.0 • Public • Published

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");
	}
}

Dependents (0)

Package Sidebar

Install

npm i @rbxts/lua-table-utils

Weekly Downloads

1

Version

1.2.0

License

MIT

Unpacked Size

4.96 kB

Total Files

11

Last publish

Collaborators

  • v3l0c1t13s