* Lowercase the first character. Used in reverse: `setName:` setter ↔ * Swift property `name`.
(s: string)
| 48 | * Swift property `name`. |
| 49 | */ |
| 50 | function lowerFirst(s: string): string { |
| 51 | return s.length > 0 ? s.charAt(0).toLowerCase() + s.slice(1) : s; |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * Compute the auto-bridged ObjC selector for a Swift method declaration. |
no outgoing calls
no test coverage detected