Skip to content

Releases: DonKarlssonSan/complex

Docs

28 Sep 20:51
Compare
Choose a tag to compare

Added documentation for the operations

v2.0.0: Removed the prefix.

26 Sep 20:33
Compare
Choose a tag to compare

Breaking change when removing the complex prefix.
Old way:

var complex = require("complex");
var c = new complex.Complex(1, 2);

New way:

var Complex = require("complex");
var c = new Complex(1, 2);