Initial Commit

This commit is contained in:
2026-04-05 20:15:13 +10:00
commit 592be30781
193 changed files with 79479 additions and 0 deletions

12
node_modules/jquery/src/core/camelCase.js generated vendored Normal file
View File

@@ -0,0 +1,12 @@
// Matches dashed string for camelizing
var rdashAlpha = /-([a-z])/g;
// Used by camelCase as callback to replace()
function fcamelCase( _all, letter ) {
return letter.toUpperCase();
}
// Convert dashed to camelCase
export function camelCase( string ) {
return string.replace( rdashAlpha, fcamelCase );
}