Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
function createConversionError(value: any, typ: Function, path: string[]) {
const type = (typ as Class).name
return new ConversionError({ path: path, messages: [errorMessage.UnableToConvertValue.format(value, type)] })
}