Compare commits

..

No commits in common. "ea92a2541db8c955070105be12e3cdd3d8ed12fd" and "b23289b8eb7f096154da683578a59f3ccc215079" have entirely different histories.

2 changed files with 4 additions and 4 deletions

4
dist/index.js vendored
View File

@ -44,7 +44,7 @@ export class IPFSClient extends Client {
pipe = defer(); pipe = defer();
return { return {
value: chunk, value: chunk,
done, done: true,
}; };
}, },
}; };
@ -54,4 +54,4 @@ export class IPFSClient extends Client {
}; };
} }
} }
export const createClient = factory(IPFSClient, "AABQIM9nyK61LFfr5jUAivD6JYRvQsC5XSNE71XXHfn-sg"); export const createClient = factory(IPFSClient, "AAADHtX7m4wC7kFA8wMqFzowlgweBG1FgQjGTabVOMRqBA");

View File

@ -67,7 +67,7 @@ export class IPFSClient extends Client {
return { return {
value: chunk, value: chunk,
done, done: true as const,
}; };
}, },
}; };
@ -80,5 +80,5 @@ export class IPFSClient extends Client {
export const createClient = factory<IPFSClient>( export const createClient = factory<IPFSClient>(
IPFSClient, IPFSClient,
"AABQIM9nyK61LFfr5jUAivD6JYRvQsC5XSNE71XXHfn-sg" "AAADHtX7m4wC7kFA8wMqFzowlgweBG1FgQjGTabVOMRqBA"
); );