web.js 243 B

12345678910
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.byteLength = byteLength;
  6. function byteLength(payload) {
  7. return new TextEncoder().encode(payload).buffer.byteLength;
  8. }
  9. //# sourceMappingURL=web.js.map