UNPKG

hyperformula

Version:

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

23 lines (21 loc) 498 B
"use strict"; exports.__esModule = true; exports.EmptyCellVertex = void 0; var _InterpreterValue = require("../interpreter/InterpreterValue"); /** * @license * Copyright (c) 2025 Handsoncode. All rights reserved. */ /** * Represents singleton vertex bound to all empty cells */ class EmptyCellVertex { constructor() {} /** * Retrieves cell value bound to that singleton */ getCellValue() { return _InterpreterValue.EmptyValue; } } exports.EmptyCellVertex = EmptyCellVertex;