Bump to v4.17.3.

This commit is contained in:
John-David Dalton
2016-12-19 17:17:56 -06:00
parent 0c27706e89
commit c7a7540e16
28 changed files with 195 additions and 152 deletions

View File

@@ -14,7 +14,7 @@ define(['./toInteger', './toNumber', './toString'], function(toInteger, toNumber
var func = Math[methodName];
return function(number, precision) {
number = toNumber(number);
precision = nativeMin(toInteger(precision), 292);
precision = precision == null ? 0 : nativeMin(toInteger(precision), 292);
if (precision) {
// Shift with exponential notation to avoid floating-point issues.
// See [MDN](https://mdn.io/round#Examples) for more details.