Comparing version 1.12.1 to 1.13.0
# History | ||
## 1.13.0 | ||
* add fullBuffer to parsePacketBuffer return | ||
## 1.12.1 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "protodef", | ||
"version": "1.12.1", | ||
"version": "1.13.0", | ||
"description": "A simple yet powerful way to define binary protocols", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -107,3 +107,4 @@ const numeric = require('./datatypes/numeric') | ||
metadata: { size }, | ||
buffer: buffer.slice(0, size) | ||
buffer: buffer.slice(0, size), | ||
fullBuffer: buffer | ||
} | ||
@@ -110,0 +111,0 @@ } |
@@ -159,3 +159,4 @@ const { getFieldInfo, tryCatch } = require('./utils') | ||
}, | ||
buffer: buffer.slice(0, size) | ||
buffer: buffer.slice(0, size), | ||
fullBuffer: buffer | ||
} | ||
@@ -162,0 +163,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
161754
4512