UNPKG

nerdamer-ts

Version:

javascript light-weight symbolic math expression evaluator

12 lines 405 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.invert = void 0; const Utils_1 = require("../../../../Core/Utils"); const Errors_1 = require("../../../../Core/Errors"); function invert(mat) { if ((0, Utils_1.isMatrix)(mat)) return mat.invert(); (0, Errors_1.err)('invert expects a matrix'); } exports.invert = invert; //# sourceMappingURL=invert.js.map