in ark-demo/webapp/_templates/promptUtils.js [91:96]
6 lines of code
2 McCabe index (conditional complexity)
function getTypesImport(type) {
if (!Object.values(MAP_TYPES).includes(type)) {
throw new Error(`Unknown Map type ${type}`);
}
return `MAP_TYPES.${type.toUpperCase()}`;
}