(transform: string, initialTransform?: string)
| 90 | * that exited before the base transform was applied. |
| 91 | */ |
| 92 | export function combineTransforms(transform: string, initialTransform?: string): string { |
| 93 | return initialTransform && initialTransform != 'none' |
| 94 | ? transform + ' ' + initialTransform |
| 95 | : transform; |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Matches the target element's size to the source's size. |
no outgoing calls
no test coverage detected