f7
f7 is a spreadsheet formula execution library
git clone https://git.vogt.world/f7.git
Log | Files | README.md | LICENSE.md
← All files
name: src/main/js/formulas/logic/TRUE.ts
-rw-r--r--
487
 1import { SheetColumnRowKey } from "../../models/common/SheetColumnRowKey";
 2import { Complex } from "../../models/common/Types";
 3import { AbstractFormula } from "../AbstractFormula";
 4import { FormulaName } from "../FormulaName";
 5
 6export class TRUE extends AbstractFormula {
 7  static SELF: TRUE = new TRUE();
 8  NAME = FormulaName.TRUE;
 9
10  internal(origin: SheetColumnRowKey, ...values: Array<Complex>) {
11    AbstractFormula.checkLength(values.length, 0, this.NAME);
12    return true;
13  }
14}