(value: string)
| 5 | export const TRENDS_SOURCE_ID = 'trends'; |
| 6 | |
| 7 | export const stringToBoolean = (value: string): boolean => { |
| 8 | if (typeof value !== 'string') { |
| 9 | return false; |
| 10 | } |
| 11 | |
| 12 | return value.toLowerCase() === 'true'; |
| 13 | }; |
| 14 | |
| 15 | export const formatCurrency = ( |
| 16 | value: number, |
no outgoing calls
no test coverage detected