Auto-commit 2026-04-29 16:31
This commit is contained in:
11
node_modules/fastify-plugin/lib/toCamelCase.js
generated
vendored
Normal file
11
node_modules/fastify-plugin/lib/toCamelCase.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
'use strict'
|
||||
|
||||
module.exports = function toCamelCase (name) {
|
||||
if (name[0] === '@') {
|
||||
name = name.slice(1).replace('/', '-')
|
||||
}
|
||||
const newName = name.replace(/-(.)/g, function (match, g1) {
|
||||
return g1.toUpperCase()
|
||||
})
|
||||
return newName
|
||||
}
|
||||
Reference in New Issue
Block a user