import { mo } from '../../src/index.ts'; export const uppercase = mo(import.meta, (s: string): string => { return s.toUpperCase(); }); export const repeat = mo(import.meta, (s: string, n: number): string => { return s.repeat(n); });