(name: string)
| 48 | export const isLengthEven = (str = '') => str.length % 2 === 0; |
| 49 | |
| 50 | export function snakeToCamel(name: string) { |
| 51 | return name.replace(/_([a-z])/g, (_p0, p1) => p1.toUpperCase()); |
| 52 | } |
| 53 | /** |
| 54 | * Are two arrays have intersection |
| 55 | */ |
no test coverage detected