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.
str
Strings
Normalization, slugs, random strings, and formatting.
View API
num
Numbers
Math operations, byte formatting, and clamping.
View API
date
Dates
Calendar arithmetic, relative time, and smart parsing.
View API
obj / arr
Data
Deep object cloning and advanced array management.
View API
async / is
Logic
Asynchronous control flow and validation guards.
View API
id / fn
Primitives
Core identity (UUID) and functional helpers (Memoize).
View API
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.
