UNPKG

cumqueoptio

Version:

The meta-framework suite designed from scratch for frontend-focused modern web development.

8 lines (5 loc) 225 B
import { ActionTypeNames, MachineActionPrefix } from './const'; export function getEventType(name: string, type: ActionTypeNames) { const path = [name, MachineActionPrefix, type]; return path.join('/').toUpperCase(); }