UNPKG

@rayyamhk/complex

Version:

A lightweight and easy-to-use library for you to manipulate complex numbers

13 lines (11 loc) 229 B
"use strict"; /** * Gets the real part of a Complex Number. * @memberof Complex * @instance * @returns {number} The real part of the Complex Number */ function getReal() { return this.re; } module.exports = getReal;