summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/math/atan.js
blob: 79ad79c501bd2d374e19ac69f16b6373300f5062 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
"use strict";

module.exports = function atan(arg) {
  //  discuss at: http://locutus.io/php/atan/
  // original by: Onno Marsman (https://twitter.com/onnomarsman)
  //   example 1: atan(8723321.4)
  //   returns 1: 1.5707962121596615

  return Math.atan(arg);
};
//# sourceMappingURL=atan.js.map