UNPKG

432 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.isCodec = void 0;
4const helpers_js_1 = require("./helpers.js");
5const checkCodec = /*#__PURE__*/ (0, helpers_js_1.isOnObject)('toHex', 'toHuman', 'toU8a');
6const checkRegistry = /*#__PURE__*/ (0, helpers_js_1.isOnObject)('get');
7function isCodec(value) {
8 return checkCodec(value) && checkRegistry(value.registry);
9}
10exports.isCodec = isCodec;