We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10be97a commit 70369dcCopy full SHA for 70369dc
lib/node_modules/@stdlib/constants/float64/max-safe-nth-factorial/README.md
@@ -69,6 +69,8 @@ function factorial( n ) {
69
return a;
70
}
71
72
+var v;
73
+var i;
74
for ( i = 0; i < 50; i++ ) {
75
v = factorial( i );
76
if ( i > FLOAT64_MAX_SAFE_NTH_FACTORIAL ) {
lib/node_modules/@stdlib/constants/float64/max-safe-nth-factorial/examples/index.js
@@ -20,9 +20,6 @@
20
21
var FLOAT64_MAX_SAFE_NTH_FACTORIAL = require( './../lib' ); // eslint-disable-line id-length
22
23
-var v;
24
-var i;
25
-
26
function factorial( n ) {
27
var a;
28
var i;
@@ -34,6 +31,8 @@ function factorial( n ) {
34
31
35
32
36
33
37
38
39
0 commit comments