michael@0: /* michael@0: * Any copyright is dedicated to the Public Domain. michael@0: * http://creativecommons.org/licenses/publicdomain/ michael@0: */ michael@0: michael@0: assertEq(Math.round(9007199254740991), 9007199254740991); michael@0: assertEq(Math.round(-19007199254740990), -19007199254740990); michael@0: michael@0: assertEq(Math.round("9007199254740991"), 9007199254740991); michael@0: assertEq(Math.round("-19007199254740990"), -19007199254740990);