UNPKG

@vime/core

Version:

Customizable, extensible, accessible and framework agnostic media player.

7 lines (6 loc) 254 B
export const dashToCamelCase = (str) => str.replace(/-([a-z])/g, (_, up) => up.toUpperCase()); export const dashToPascalCase = (str) => str .toLowerCase() .split('-') .map(segment => segment.charAt(0).toUpperCase() + segment.slice(1)) .join('');