Utilities
Is Server Side 
--- Return true if the script is server side
---@return boolean
function SRB:IsServerSide()
Is Client Side 
--- Return true if the script is client side
---@return boolean
function SRB:IsClientSide()
Is Table 
--- Return true if the value is a table
---@param v dynamic
---@return bool
function SRB:IsTable(v)
Is String 
--- Return true if the value is a string
---@param v dynamic
---@return bool
function SRB:IsString(v)
Is Number 
--- Return true if the value is a number
---@param v dynamic
---@return bool
function SRB:IsNumber(v)
Last updated