hyperformula
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
19 lines • 405 B
JavaScript
/**
* @license
* Copyright (c) 2025 Handsoncode. All rights reserved.
*/
export class DetailedCellError {
constructor(error, value, address) {
var _a;
this.value = value;
this.address = address;
this.type = error.type;
this.message = (_a = error.message) !== null && _a !== void 0 ? _a : '';
}
toString() {
return this.value;
}
valueOf() {
return this.value;
}
}