hyperformula
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
20 lines • 447 B
JavaScript
/**
* @license
* Copyright (c) 2025 Handsoncode. All rights reserved.
*/
import { CellVertex } from "./CellVertex.mjs";
import { EmptyValue } from "../interpreter/InterpreterValue.mjs";
/**
* Represents singleton vertex bound to all empty cells
*/
export class EmptyCellVertex extends CellVertex {
constructor() {
super();
}
/**
* Retrieves cell value bound to that singleton
*/
getCellValue() {
return EmptyValue;
}
}