Skip to content

Commit 7415c62

Browse files
committed
fix format
1 parent ac36439 commit 7415c62

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/core/src/codecs/octetstream-codec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ export default class OctetstreamCodec implements ContentCodec {
215215
for (const propertyName of sortedProperties) {
216216
const propertySchema = schema.properties[propertyName];
217217
const length = bytes.length.toString();
218-
result[propertyName] = this.bytesToValue(bytes, propertySchema, {...parameters, length});
218+
result[propertyName] = this.bytesToValue(bytes, propertySchema, { ...parameters, length });
219219
}
220220
return result;
221221
}

0 commit comments

Comments
 (0)