Variable UtilsConst

Utils: UtilsSingleton = ...

The main Utils singleton instance.

This is the primary way to access all utility functions.

Example

import { Utils } from './utils';

const randomNum = Utils.rand(1, 10);
const hexColor = Utils.rgbToHex(255, 0, 0);