UNPKG

328 BJavaScriptView Raw
1// Copyright 2017-2022 @polkadot/util authors & contributors
2// SPDX-License-Identifier: Apache-2.0
3import { isOnObject } from "./helpers.js";
4const checkCodec = isOnObject('toHex', 'toU8a');
5const checkRegistry = isOnObject('get');
6export function isCodec(value) {
7 return checkCodec(value) && checkRegistry(value.registry);
8}
\No newline at end of file