We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44452e9 commit c027962Copy full SHA for c027962
src/build/webref/css.ts
@@ -1,4 +1,4 @@
1
-function hyphenToCamelCase(name: string): string {
+export function hyphenToCamelCase(name: string): string {
2
const camel = name
3
.replace(/^-(\w)/, (_, c) => c)
4
.replace(/-(\w)/g, (_, c) => c.toUpperCase());
0 commit comments