File

teal-src/util/human/units.d.tl @ 12968:efdb7f2cd578

mod_debug_reset: New module to "reset" a running server (e.g. for testing) Plan to use this for integration tests.
author Matthew Wild <mwild1@gmail.com>
date Thu, 23 Mar 2023 14:40:51 +0000
parent 12608:946a11f794e2
line wrap: on
line source

local lib = record
	enum logbase
		"b" -- 1024
	end
	adjust : function (number, string) : number, string
	format : function (number, string, logbase) : string
end
return lib