node-smart-buffer
Advanced tools
+8
-1
@@ -247,3 +247,10 @@ const maximum = Math.pow( 2, 17 ) - 1; | ||
| } else { | ||
| this.write( number.swap64() ); | ||
| this.buffer[ this.cursor++ ] = number[ 7 ]; | ||
| this.buffer[ this.cursor++ ] = number[ 6 ]; | ||
| this.buffer[ this.cursor++ ] = number[ 5 ]; | ||
| this.buffer[ this.cursor++ ] = number[ 4 ]; | ||
| this.buffer[ this.cursor++ ] = number[ 3 ]; | ||
| this.buffer[ this.cursor++ ] = number[ 2 ]; | ||
| this.buffer[ this.cursor++ ] = number[ 1 ]; | ||
| this.buffer[ this.cursor++ ] = number[ 0 ]; | ||
| } | ||
@@ -250,0 +257,0 @@ return this; |
+1
-1
| { | ||
| "name": "node-smart-buffer", | ||
| "version": "2.1.1", | ||
| "version": "2.1.2", | ||
| "description": "ring buffer & packet compile", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 1 instance in 1 package
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 1 instance in 1 package
16111
2.17%403
1.77%