Select the types of activity you want to include in your feed.
1import { mo } from '../../src/index.ts'; 2 3export const uppercase = mo(import.meta, (s: string): string => { 4 return s.toUpperCase(); 5}); 6 7export const repeat = mo(import.meta, (s: string, n: number): string => { 8 return s.repeat(n); 9});