mirror of https://github.com/status-im/js-waku.git
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…
Reference in New Issue