UNPKG

walletlink-e

Version:
15 lines (14 loc) 569 B
"use strict"; // Copyright (c) 2018-2020 WalletLink.org <https://www.walletlink.org/> // Copyright (c) 2018-2020 Coinbase, Inc. <https://www.coinbase.com/> // Licensed under the Apache License, version 2.0 Object.defineProperty(exports, "__esModule", { value: true }); exports.isServerMessageFail = void 0; function isServerMessageFail(msg) { return (msg && msg.type === "Fail" && typeof msg.id === "number" && typeof msg.sessionId === "string" && typeof msg.error === "string"); } exports.isServerMessageFail = isServerMessageFail;