Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@ot-builder/bin-util

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ot-builder/bin-util - npm Package Compare versions

Comparing version
1.5.4
to
1.5.5
+28
-1
CHANGELOG.json

@@ -5,3 +5,30 @@ {

{
"date": "Sat, 09 Jul 2022 01:50:43 GMT",
"date": "Sat, 03 Dec 2022 01:08:18 GMT",
"tag": "@ot-builder/bin-util_v1.5.5",
"version": "1.5.5",
"comments": {
"patch": [
{
"author": "beachball",
"package": "@ot-builder/bin-util",
"comment": "Bump @ot-builder/errors to v1.5.5",
"commit": "f1f80856c651056bcdc805f284f0580c49af80fd"
},
{
"author": "beachball",
"package": "@ot-builder/bin-util",
"comment": "Bump @ot-builder/prelude to v1.5.5",
"commit": "f1f80856c651056bcdc805f284f0580c49af80fd"
},
{
"author": "beachball",
"package": "@ot-builder/bin-util",
"comment": "Bump @ot-builder/common-impl to v1.5.5",
"commit": "f1f80856c651056bcdc805f284f0580c49af80fd"
}
]
}
},
{
"date": "Sat, 09 Jul 2022 01:52:09 GMT",
"tag": "@ot-builder/bin-util_v1.5.4",

@@ -8,0 +35,0 @@ "version": "1.5.4",

# Change Log - @ot-builder/bin-util
This log was last generated on Sat, 09 Jul 2022 01:50:43 GMT and should not be manually modified.
This log was last generated on Sat, 03 Dec 2022 01:08:18 GMT and should not be manually modified.
<!-- Start content -->
## 1.5.5
Sat, 03 Dec 2022 01:08:18 GMT
### Patches
- Bump @ot-builder/errors to v1.5.5
- Bump @ot-builder/prelude to v1.5.5
- Bump @ot-builder/common-impl to v1.5.5
## 1.5.4
Sat, 09 Jul 2022 01:50:43 GMT
Sat, 09 Jul 2022 01:52:09 GMT

@@ -11,0 +21,0 @@ ### Patches

+7
-7

@@ -6,9 +6,2 @@ "use strict";

class BufferWriter {
constructor(cap = 0x40) {
this._capacity = cap;
this._wb = Buffer.allocUnsafe(cap);
this._wb.fill(0);
this._offset = 0;
this._length = 0;
}
get capacity() {

@@ -26,2 +19,9 @@ return this._capacity;

}
constructor(cap = 0x40) {
this._capacity = cap;
this._wb = Buffer.allocUnsafe(cap);
this._wb.fill(0);
this._offset = 0;
this._length = 0;
}
guard(len2write) {

@@ -28,0 +28,0 @@ if (this._offset + len2write > this._capacity) {

@@ -1,8 +0,8 @@

export declare type uint8 = number;
export declare type uint16 = number;
export declare type uint24 = number;
export declare type uint32 = number;
export declare type int8 = number;
export declare type int16 = number;
export declare type int32 = number;
export type uint8 = number;
export type uint16 = number;
export type uint24 = number;
export type uint32 = number;
export type int8 = number;
export type int16 = number;
export type int32 = number;
export declare const SizeofUInt8 = 1;

@@ -9,0 +9,0 @@ export declare const SizeofUInt16 = 2;

{
"name": "@ot-builder/bin-util",
"description": "",
"version": "1.5.4",
"version": "1.5.5",
"license": "MIT",

@@ -27,5 +27,5 @@ "repository": {

"dependencies": {
"@ot-builder/errors": "1.5.4",
"@ot-builder/prelude": "1.5.4",
"@ot-builder/common-impl": "1.5.4",
"@ot-builder/errors": "1.5.5",
"@ot-builder/prelude": "1.5.5",
"@ot-builder/common-impl": "1.5.5",
"tslib": "^2.0.0"

@@ -32,0 +32,0 @@ },