System Module

System Utilities (utils)

High-performance suite for string manipulation, async control, and data validation.

The utils module provides a comprehensive collection of optimized functions globally accessible via the __sys__.utils namespace.

Global Access

All utilities are organized into sub-namespaces for better discoverability and clean syntax:

typescript
const id = __sys__.utils.id.uuid();
const bytes = __sys__.utils.num.formatBytes(1234567);
const date = __sys__.utils.date.format(Date.now());
String Utilities

Learn how to manipulate and format strings with the native str module.