UNPKG

@charmr/oauth-button-web

Version:

A lightweight, framework-agnostic OAuth login button as a custom Web Component. Easily drop it into any HTML, React, Angular, or Vue project.

4 lines (3 loc) 107 B
export function kebabsToCamel(kebab) { return kebab.replace(/-([a-z])/g, (_, c) => c.toUpperCase()); }