import { mo } from '../../src/index.ts'; export const heavyWork = mo(import.meta, (item: number): number => { // Simulate CPU-bound work (~50ms per item) const start = Date.now(); while (Date.now() - start < 50) { /* busy wait */ } return item * item; });