| 7 | export const setErrorMessage = message => (defaultMessage = message); |
| 8 | |
| 9 | export interface RequiredArgs { |
| 10 | trim: boolean; |
| 11 | } |
| 12 | const DEFAULT_PARAMS: RequiredArgs = { trim: true }; |
| 13 | |
| 14 | const isStringValid = (value: string, trim: boolean): boolean => |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…