* @param {string} prefix vendor-specific prefix, eg: Webkit * @param {string} key style name, eg: transitionDuration * @return {string} style name prefixed with `prefix`, properly camelCased, eg: * WebkitTransitionDuration
(prefix, key)
| 479 | * WebkitTransitionDuration |
| 480 | */ |
| 481 | function prefixKey(prefix, key) { |
| 482 | return prefix + key.charAt(0).toUpperCase() + key.substring(1); |
| 483 | } |
| 484 | |
| 485 | /** |
| 486 | * Support style names that may come passed in prefixed by adding permutations |
no outgoing calls
no test coverage detected
searching dependent graphs…