Skip to content

Commit fe2a5cd

Browse files
committed
core: prettier and eslint
1 parent 30dbc6a commit fe2a5cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/server/parameter-processor.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ export class ParameterProcessor {
9292
case 'Number':
9393
return paramValue === undefined ? paramValue : parseFloat(paramValue as string);
9494
case 'Boolean':
95-
if(typeof paramValue === "string"){
96-
return paramValue.toLowerCase() === 'true'
95+
if (typeof paramValue === 'string') {
96+
return paramValue.toLowerCase() === 'true';
9797
}
9898
return paramValue === undefined ? paramValue : paramValue === true;
9999
default:

0 commit comments

Comments
 (0)