Skip to content

Latest commit

 

History

History
100 lines (73 loc) · 2.38 KB

File metadata and controls

100 lines (73 loc) · 2.38 KB
sidebar_position 0

Extensions

Unofficial extensions to the Lua standard libraries

Status

Availability

Extensions are added to the existing global standard library tables. You can simply index them:

debug.dump({ 1, 2, 3 })

Debug Library

debug.dump

Prints a human-readable string representation of the given object. Mostly useful for dumping tables, but unsuitable for serialization purposes. The output format cannot be considered stable. Currently uses inspect internally, though this may change in the future.

String Library

string.diff

Returns a string representing the difference between firstValue and secondValue. The exact format is subject to change.

string.explode

Tokenizes the given inputString based on a configurable delimiter character, which is stripped from the output.

string.filesize

Returns a human-readable representation of the given fileSizeInBytes using standard units. The exact format is subject to change.

Table Library

table.contains

Returns true if the given table contains value in the array part of the table, and false otherwise. The dictionary part is ignored.

Changelog

Version What happened?
v0.0.2 Added string.filesize
v0.0.1 Initial release