9 lines
206 B
Lua
9 lines
206 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@param x value
|
|
---@param base number
|
|
---@return number numValue
|
|
---Returns the numeric value of a string
|
|
function tonumber(x, base) end
|