| 1 | import { KeyframeAnimation, KeyframeAnimationInfo, KeyframeDeclaration, KeyframeInfo, parseKeyframeDeclarations, animationTimingFunctionConverter } from '@nativescript/core'; |
| 2 | |
| 3 | export interface Keyframe { |
| 4 | [key: string]: string | number; |
| 5 | offset: number; |
| 6 | } |
| 7 | |
| 8 | const DASH_CASE_REGEXP = /-+([a-z0-9])/g; |
| 9 | export function dashCaseToCamelCase(input: string): string { |
nothing calls this directly
no outgoing calls
no test coverage detected