aboutsummaryrefslogtreecommitdiffstats
path: root/website/harness/numeric_conversion.js
blob: 427eeaa21e8b54084efdec4644bbe6175c4945b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

function ToInteger(p) {
  x = Number(p);

  if(isNaN(x)){
    return +0;
  }
  
  if((x === +0) 
  || (x === -0) 
  || (x === Number.POSITIVE_INFINITY) 
  || (x === Number.NEGATIVE_INFINITY)){
     return x;
  }

  var sign = ( x < 0 ) ? -1 : 1;

  return (sign*Math.floor(Math.abs(x)));
}