| 1234567891011121314151617181920 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- function getRoundValue(n) {
- if (!(n == 0)) {
- return n.toFixed();
- }
- }
- WScript.Echo = function (n) {
- print(formatOutput(n.toString()));
- };
- function formatOutput(n) {
- return n.replace(/[-+]?[0-9]*\.?[0-9]+([eE][-+]?[0-9]+)?/g, function () {
- return getRoundValue(parseFloat());
- });
- }
- WScript.Echo(0);
- WScript.Echo(0);
|