( string )
| 3951 | // Support: IE <=9 - 11, Edge 12 - 15 |
| 3952 | // Microsoft forgot to hump their vendor prefix (trac-9572) |
| 3953 | function camelCase( string ) { |
| 3954 | return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); |
| 3955 | } |
| 3956 | var acceptData = function( owner ) { |
| 3957 | |
| 3958 | // Accepts only: |
no outgoing calls
no test coverage detected