UNPKG

hyperformula

Version:

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

17 lines 372 B
/** * @license * Copyright (c) 2025 Handsoncode. All rights reserved. */ import { EmptyValue } from "../interpreter/InterpreterValue.mjs"; /** * Represents singleton vertex bound to all empty cells */ export class EmptyCellVertex { constructor() {} /** * Retrieves cell value bound to that singleton */ getCellValue() { return EmptyValue; } }