mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 05:38:03 +00:00
7 lines
221 B
JavaScript
7 lines
221 B
JavaScript
import { isOnObject } from './helpers.js';
|
|
/**
|
|
* @name isCompact
|
|
* @summary Tests for SCALE-Compact-like object instance.
|
|
*/
|
|
export const isCompact = /*#__PURE__*/ isOnObject('toBigInt', 'toBn', 'toNumber', 'unwrap');
|