UNPKG

@meyer/hyperdeck-emulator

Version:

Typescript Node.js library for emulating a Blackmagic Hyperdeck

5 lines (4 loc) 185 B
/** Convert `yourExampleKey` to `your example key` */ export const camelcaseToSpaceCase = (key: string): string => { return key.replace(/([a-z])([A-Z]+)/g, '$1 $2').toLowerCase(); };