UNPKG

lupine.web

Version:

lupine.web is a extremely fast, small size and lightweight frontend framework, using React TSX syntax.

4 lines (3 loc) 122 B
export const camelToHyphens = function (name: string) { return name.replace(/[A-Z]/g, (m) => '-' + m.toLowerCase()); };