Skip to content

Commit 0f389a7

Browse files
committedAug 20, 2021
chore: update uint8arrays
1 parent 9f0582f commit 0f389a7

File tree

48 files changed

+63
-61
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+63
-61
lines changed
 

‎examples/auto-relay/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const path = require('path')
44
const execa = require('execa')
55
const pDefer = require('p-defer')
6-
const uint8ArrayToString = require('uint8arrays/to-string')
6+
const { toString: uint8ArrayToString } = require('uint8arrays/to-string')
77

88
function startProcess (name, args = []) {
99
return execa('node', [path.join(__dirname, name), ...args], {

‎examples/chat/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const path = require('path')
44
const execa = require('execa')
55
const pDefer = require('p-defer')
6-
const uint8ArrayToString = require('uint8arrays/to-string')
6+
const { toString: uint8ArrayToString } = require('uint8arrays/to-string')
77

88
function startProcess(name) {
99
return execa('node', [path.join(__dirname, name)], {

0 commit comments

Comments
 (0)
Please sign in to comment.