1.0.2 • Published 7 months ago

@rbxts/tableutil2 v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
7 months ago

tableutil2

Changes

  • None so far.

Changelog

1.0.2

  • Updated README.md

1.0.1

  • Fixed README.md

Installation

npm i @rbxts/tableutil2

Example Usage

import Utilities from "@rbxts/tableutil2";

Utilities.DeepCopy(new Map<string, number>()); // Copied - Map<string, number>
Utilities.DeepCopy([1, 5, 8]); // Copied - [1, 5, 8]
Utilities.DeepCopy({ 
    ["key"]: { 
        ["key2"]: "value"
    } 
}) // Copied - { ["key"]: { ["key2"]: "value" } }