UNPKG

@ibyar/core

Version:

Ibyar core, Implements Aurora's core functionality, low-level services, and utilities

7 lines 250 B
export function ToCamelCase(str) { return str.replace(/([A-Z])/g, ' $1') // uppercase the first character .replace(/^./, function (str) { return str.toUpperCase(); }) .replace(/ /g, ''); } //# sourceMappingURL=utils.js.map