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

module.exports = function tan(arg) {
  //  discuss at: http://locutus.io/php/tan/
  // original by: Onno Marsman (https://twitter.com/onnomarsman)
  //   example 1: Math.ceil(tan(8723321.4) * 10000000)
  //   returns 1: 54251849

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