UNPKG

@rayyamhk/complex

Version:

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

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