UNPKG

vinmonopolet-ts

Version:

Extracts information on products, categories and stores from Vinmonopolet

8 lines (7 loc) 300 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function camelCase(str) { const string = str.replace(/[-_\s]+(.)?/g, (match, chr) => chr ? chr.toUpperCase() : ""); return string.substr(0, 1).toLowerCase() + string.substr(1); } exports.default = camelCase;