Skip to content

Instantly share code, notes, and snippets.

@Ivannnnn
Last active August 30, 2022 07:07
Show Gist options
  • Save Ivannnnn/44521241b7cf9a170270b295aa1b8721 to your computer and use it in GitHub Desktop.
Save Ivannnnn/44521241b7cf9a170270b295aa1b8721 to your computer and use it in GitHub Desktop.
function css(obj) {
return Object.keys(obj)
.map((key) => {
const newKey = key.replace(
/[A-Z]/,
(match, index) => "-" + match.toLowerCase()
);
return `${newKey}:${obj[key]};`;
})
.join("\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment