@psdk/frame-father
Advanced tools
Comparing version 0.2.60 to 0.2.61
@@ -53,3 +53,3 @@ "use strict"; | ||
const t_binary = Array.prototype.slice.call(t_buffer, 0); | ||
bytes.push(...t_binary); | ||
bytes = bytes.concat(t_binary); | ||
//# use utf8 encoding | ||
@@ -63,3 +63,3 @@ // const t_binary = ByteKit.textToU8A(t) | ||
const b = Array.from((_b = clause.binary) !== null && _b !== void 0 ? _b : types_1.PsdkConst.EMPTY_BYTES); | ||
bytes.push(...b); | ||
bytes = bytes.concat(b); | ||
break; | ||
@@ -66,0 +66,0 @@ } |
import { CommandClause } from "../print/command_clause"; | ||
export declare class BinaryCommand { | ||
private readonly binary; | ||
private binary; | ||
constructor(binary?: Array<number>); | ||
@@ -5,0 +5,0 @@ static make(): BinaryCommand; |
@@ -56,3 +56,3 @@ "use strict"; | ||
const b = Array.from(u8a); | ||
this.binary.push(...b); | ||
this.binary = this.binary.concat(b); | ||
return this; | ||
@@ -59,0 +59,0 @@ } |
@@ -20,3 +20,3 @@ "use strict"; | ||
sversion() { | ||
return '0.0.18-snapshot'; | ||
return '0.2.61'; | ||
} | ||
@@ -23,0 +23,0 @@ /** |
{ | ||
"name": "@psdk/frame-father", | ||
"version": "0.2.60", | ||
"version": "0.2.61", | ||
"description": "psdk", | ||
@@ -55,3 +55,3 @@ "main": "build/index.js", | ||
], | ||
"gitHead": "23fc53610dfb58bc53be0d385bfef00e8a378da4" | ||
"gitHead": "1f22c881c4ca46cccb7ca33f5d8bc6f8de0ee108" | ||
} |
Sorry, the diff of this file is not supported yet
85139