UNPKG

vinmonopolet-ts

Version:

Extracts information on products, categories and stores from Vinmonopolet

5 lines (4 loc) 206 B
export default function camelCase(str) { const string = str.replace(/[-_\s]+(.)?/g, (match, chr) => chr ? chr.toUpperCase() : ""); return string.substr(0, 1).toLowerCase() + string.substr(1); }