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