isBigIntObjectRaw

external fun isBigIntObjectRaw(value: Any?): Boolean(source)

Returns true if the value is a BigInt object, e.g. created by Object(BigInt(123)).

util.types.isBigIntObject(Object(BigInt(123)));   // Returns true
util.types.isBigIntObject(BigInt(123));   // Returns false
util.types.isBigIntObject(123);  // Returns false

Since

v10.4.0