complex.js
Advanced tools
Comparing version 2.0.5 to 2.0.6
{ | ||
"name": "complex.js", | ||
"main": "complex.js", | ||
"version": "2.0.5", | ||
"version": "2.0.6", | ||
"homepage": "https://github.com/infusion/Complex.js", | ||
@@ -6,0 +6,0 @@ "description": "A complex number library", |
/** | ||
* @license Complex.js v2.0.5 11/02/2016 | ||
* @license Complex.js v2.0.6 11/02/2016 | ||
* | ||
@@ -1393,5 +1393,5 @@ * Copyright (c) 2016, Robert Eisele (robert@xarg.org) | ||
Object.defineProperty(exports, "__esModule", {'value': true}); | ||
Complex['default'] = Complex; | ||
Complex['Complex'] = Complex; | ||
module['exports'] = Complex; | ||
exports['Angles'] = Complex; | ||
exports['default'] = Complex; | ||
} else { | ||
@@ -1398,0 +1398,0 @@ root['Complex'] = Complex; |
/* | ||
Complex.js v2.0.5 11/02/2016 | ||
Complex.js v2.0.6 11/02/2016 | ||
@@ -23,2 +23,2 @@ Copyright (c) 2016, Robert Eisele (robert@xarg.org) | ||
this.im)},toString:function(){var a=this.re,b=this.im,c="";if(this.isNaN())return"NaN";if(this.b())return"0";if(this.a())return"Infinity";0!==a&&(c+=a);0!==b&&(0!==a?c+=0>b?" - ":" + ":0>b&&(c+="-"),b=Math.abs(b),1!==b&&(c+=b),c+="i");return c?c:"0"},toVector:function(){return[this.re,this.im]},valueOf:function(){return 0===this.im?this.re:null},isNaN:function(){return isNaN(this.re)||isNaN(this.im)},isZero:function(){return(0===this.re||-0===this.re)&&(0===this.im||-0===this.im)},isFinite:function(){return isFinite(this.re)&& | ||
isFinite(this.im)},isInfinite:function(){return!(this.isNaN()||this.isFinite())}};d.ZERO=new d(0,0);d.ONE=new d(1,0);d.I=new d(0,1);d.PI=new d(Math.PI,0);d.E=new d(Math.E,0);d.INFINITY=new d(Infinity,Infinity);d.NAN=new d(NaN,NaN);d.EPSILON=1E-16;"function"===typeof define&&define.amd?define([],function(){return d}):"object"===typeof exports?(Object.defineProperty(exports,"__esModule",{value:!0}),module.exports=d,exports.Angles=d,exports["default"]=d):n.Complex=d})(this); | ||
isFinite(this.im)},isInfinite:function(){return!(this.isNaN()||this.isFinite())}};d.ZERO=new d(0,0);d.ONE=new d(1,0);d.I=new d(0,1);d.PI=new d(Math.PI,0);d.E=new d(Math.E,0);d.INFINITY=new d(Infinity,Infinity);d.NAN=new d(NaN,NaN);d.EPSILON=1E-16;"function"===typeof define&&define.amd?define([],function(){return d}):"object"===typeof exports?(Object.defineProperty(exports,"__esModule",{value:!0}),d["default"]=d,d.Complex=d,module.exports=d):n.Complex=d})(this); |
@@ -6,3 +6,3 @@ { | ||
"title": "complex.js", | ||
"version": "2.0.5", | ||
"version": "2.0.6", | ||
"description": "A complex number library", | ||
@@ -9,0 +9,0 @@ "keywords": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
70516