mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 21:58:01 +00:00
7 lines
270 B
JavaScript
7 lines
270 B
JavaScript
import { isOnObject } from './helpers.js';
|
|
const checkCodec = /*#__PURE__*/ isOnObject('toHex', 'toHuman', 'toU8a');
|
|
const checkRegistry = /*#__PURE__*/ isOnObject('get');
|
|
export function isCodec(value) {
|
|
return checkCodec(value) && checkRegistry(value.registry);
|
|
}
|