(enumName: string)
| 19 | import {isArray, isObject} from 'lodash'; |
| 20 | |
| 21 | export function enumNameToHash(enumName: string): string { |
| 22 | return blake2AsHex(enumName).substr(2, 10); |
| 23 | } |
| 24 | |
| 25 | export interface EnumType { |
| 26 | enumValues: string[]; |
no outgoing calls
no test coverage detected