abs method

Big abs()

Return a new Big whose value is the absolute value of this Big.

Implementation

Big abs() {
  var x = this;
  x.s = 1;
  return x;
}