mirror of
https://github.com/waku-org/js-waku.git
synced 2025-01-26 20:30:07 +00:00
bug: check if process is defined before accessing it
This commit is contained in:
parent
703779b58f
commit
def8a259ca
@ -37,7 +37,7 @@ export async function defaultLibp2p(
|
||||
options?: Partial<CreateLibp2pOptions>,
|
||||
userAgent?: string
|
||||
): Promise<Libp2p> {
|
||||
if (!options?.hideWebSocketInfo && process.env.NODE_ENV !== "test") {
|
||||
if (!options?.hideWebSocketInfo && process?.env?.NODE_ENV !== "test") {
|
||||
/* eslint-disable no-console */
|
||||
console.info(
|
||||
"%cIgnore WebSocket connection failures",
|
||||
|
Loading…
x
Reference in New Issue
Block a user