isUint8Array.js 297 B

1234567
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.isUint8Array = void 0;
  4. exports.isUint8Array = typeof Buffer === 'function'
  5. ? (x) => x instanceof Uint8Array || Buffer.isBuffer(x)
  6. : (x) => x instanceof Uint8Array;
  7. //# sourceMappingURL=isUint8Array.js.map