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

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

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