Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
to-camel-case
/
Filename :
index.js
back
Copy
var space = require('to-space-case') /** * Export. */ module.exports = toCamelCase /** * Convert a `string` to camel case. * * @param {String} string * @return {String} */ function toCamelCase(string) { return space(string).replace(/\s(\w)/g, function (matches, letter) { return letter.toUpperCase() }) }