forked from josdejong/mathjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ | |
* It features real and complex numbers, units, matrices, a large set of | ||
* mathematical functions, and a flexible expression parser. | ||
* | ||
* @version 3.5.2 | ||
* @date 2016-09-20 | ||
* @version 3.5.3 | ||
* @date 2016-09-21 | ||
* | ||
* @license | ||
* Copyright (C) 2013-2016 Jos de Jong <[email protected]> | ||
|
@@ -25086,7 +25086,7 @@ return /******/ (function(modules) { // webpackBootstrap | |
/* 101 */ | ||
/***/ function(module, exports) { | ||
|
||
module.exports = '3.5.2'; | ||
module.exports = '3.5.3'; | ||
// Note: This file is automatically generated when building math.js. | ||
// Changes made in this file will be overwritten. | ||
|
||
|
@@ -29709,7 +29709,6 @@ return /******/ (function(modules) { // webpackBootstrap | |
// skip over whitespaces | ||
// space, tab, and newline when inside parameters | ||
while (isWhitespace(c)) { | ||
// TODO: also take '\r' carriage return as newline? Or does that give problems on mac? | ||
next(); | ||
} | ||
|
||
|
@@ -29925,18 +29924,19 @@ return /******/ (function(modules) { // webpackBootstrap | |
* @private | ||
*/ | ||
function isWhitespace (c) { | ||
return c == ' ' || c == '\t' || (c == '\n' && nesting_level > 0) | ||
// TODO: also take '\r' carriage return as newline? Or does that give problems on mac? | ||
return c == ' ' || c == '\t' || (c == '\n' && nesting_level > 0); | ||
} | ||
|
||
/** | ||
* Test whether the character c is a decimal mark (dot). | ||
* This depends on whether it's followed by a digit or whitespace | ||
* This is the case when it's not the start of a delimiter like '.*' or './' | ||
* @param {string} c | ||
* @param {string} cNext | ||
* @return {boolean} | ||
*/ | ||
function isDecimalMark (c, cNext) { | ||
return c == '.' && (isDigit(cNext) || isWhitespace(cNext) || cNext == '') | ||
return c == '.' && !DELIMITERS[c + cNext]; | ||
} | ||
|
||
/** | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module.exports = '3.5.2'; | ||
module.exports = '3.5.3'; | ||
// Note: This file is automatically generated when building math.js. | ||
// Changes made in this file will be overwritten. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "mathjs", | ||
"version": "3.5.2", | ||
"version": "3.5.3", | ||
"description": "Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser and offers an integrated solution to work with numbers, big numbers, complex numbers, units, and matrices.", | ||
"author": "Jos de Jong <[email protected]> (https://github.com/josdejong)", | ||
"contributors": [ | ||
|