helene
Version:
Real-time Web Apps for Node.js
9 lines • 326 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isBinary = void 0;
const isBinary = (obj) => {
return !!((typeof Uint8Array !== 'undefined' && obj instanceof Uint8Array) ||
(obj && obj.$Uint8ArrayPolyfill));
};
exports.isBinary = isBinary;
//# sourceMappingURL=is-binary.js.map