nerdamer-ts
Version:
javascript light-weight symbolic math expression evaluator
13 lines • 332 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.imagpart = void 0;
/**
* Get's the imaginary part of a complex number
* @param {Symbol} symbol
* @returns {Symbol}
*/
function imagpart(symbol) {
return symbol.imagpart();
}
exports.imagpart = imagpart;
//# sourceMappingURL=imagpart.js.map