TS - Never

by Rodwyn Moreno

TypeScript

function error(mensaje):never {
	throw new Error(mensaje);
}

error("Error crítico en la línea 666...");