File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ export class DatabasePlugin extends FunctionPlugin implements FunctionPluginType
232232 if ( this . rowMatchesCriteria ( dbData [ rowIdx ] , criteriaRows ) ) {
233233 const cellValue = dbData [ rowIdx ] [ fieldIndex ]
234234 if ( isExtendedNumber ( cellValue ) ) {
235- product *= getRawValue ( cellValue ) as number
235+ product *= getRawValue ( cellValue )
236236 hasNumeric = true
237237 }
238238 }
@@ -268,7 +268,7 @@ export class DatabasePlugin extends FunctionPlugin implements FunctionPluginType
268268 if ( this . rowMatchesCriteria ( dbData [ rowIdx ] , criteriaRows ) ) {
269269 const cellValue = dbData [ rowIdx ] [ fieldIndex ]
270270 if ( isExtendedNumber ( cellValue ) ) {
271- sum += getRawValue ( cellValue ) as number
271+ sum += getRawValue ( cellValue )
272272 }
273273 }
274274 }
@@ -592,7 +592,7 @@ export class DatabasePlugin extends FunctionPlugin implements FunctionPluginType
592592 if ( this . rowMatchesCriteria ( dbData [ rowIdx ] , criteriaRows ) ) {
593593 const cellValue = dbData [ rowIdx ] [ fieldIndex ]
594594 if ( isExtendedNumber ( cellValue ) ) {
595- values . push ( getRawValue ( cellValue ) as number )
595+ values . push ( getRawValue ( cellValue ) )
596596 }
597597 }
598598 }
You can’t perform that action at this time.
0 commit comments