Utilities

Is Server Side Shared

--- Return true if the script is server side
---@return boolean
function SRB:IsServerSide()

Is Client Side Shared

--- Return true if the script is client side
---@return boolean
function SRB:IsClientSide()

Is Table Shared

--- Return true if the value is a table
---@param v dynamic
---@return bool
function SRB:IsTable(v)

Is String Shared

--- Return true if the value is a string
---@param v dynamic
---@return bool
function SRB:IsString(v)

Is Number Shared

--- Return true if the value is a number
---@param v dynamic
---@return bool
function SRB:IsNumber(v)

Last updated