Variable utilsConst

utils: UtilsSingleton = Utils

Alias for the Utils singleton instance.

This provides an alternative way to access the utility functions with a lowercase name for convenience.

Example

import { utils } from './utils';

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