3 ], function( camelCase
) {
7 // Matches dashed string for camelizing
8 var rmsPrefix
= /^-ms-/;
10 // Convert dashed to camelCase, handle vendor prefixes.
11 // Used by the css & effects modules.
12 // Support: IE <=9 - 11+, Edge 12 - 18+
13 // Microsoft forgot to hump their vendor prefix (#9572)
14 function cssCamelCase( string
) {
15 return camelCase( string
.replace( rmsPrefix
, "ms-" ) );