Skip to content

Commit 4dee5d5

Browse files
committed
removed console log in sind
1 parent 23c7c53 commit 4dee5d5

File tree

1 file changed

+0
-5
lines changed
  • lib/node_modules/@stdlib/math/base/special/sind/lib

1 file changed

+0
-5
lines changed

lib/node_modules/@stdlib/math/base/special/sind/lib/sind.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,26 +63,21 @@ function sind(x) {
6363
x = ((x % 360) + 360) % 360
6464
if (x <= 45) {
6565
rad = deg2rad(x);
66-
console.log(rad);
6766
return kernelSin(rad, 0);
6867
}
6968
if (x <= 135) {
7069
rad = deg2rad(x - 90);
71-
console.log(rad);
7270
return kernelCos(rad, 0);
7371
}
7472
if (x <= 225) {
7573
rad = deg2rad(180 - x);
76-
console.log(rad);
7774
return kernelSin(rad, 0);
7875
}
7976
if (x <= 315) {
8077
rad = deg2rad(x - 270);
81-
console.log(rad);
8278
return -kernelCos(rad, 0);
8379
}
8480
rad = deg2rad(360 - x)
85-
console.log(rad);
8681
return -kernelSin(rad, 0);
8782
}
8883

0 commit comments

Comments
 (0)