( string )
| 3941 | // Support: IE <=9 - 11, Edge 12 - 15 |
| 3942 | // Microsoft forgot to hump their vendor prefix (trac-9572) |
| 3943 | function camelCase( string ) { |
| 3944 | return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); |
| 3945 | } |
| 3946 | var acceptData = function( owner ) { |
| 3947 | |
| 3948 | // Accepts only: |
no outgoing calls
no test coverage detected