UNPKG

hyperformula

Version:

HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas

24 lines 553 B
/** * @license * Copyright (c) 2025 Handsoncode. All rights reserved. */ import { Statistics } from "./Statistics.mjs"; /** Do not store stats in the memory. Stats are not needed on daily basis */ export class EmptyStatistics extends Statistics { /** @inheritDoc */ incrementCriterionFunctionFullCacheUsed() { // do nothing } /** @inheritDoc */ incrementCriterionFunctionPartialCacheUsed() { // do nothing } /** @inheritDoc */ start(_name) { // do nothing } /** @inheritDoc */ end(_name) { // do nothing } }