bpms_site/.svn/pristine/9c/9c5de124c38e326a8ffb395c0e1ba5154d882155.svn-base
2025-11-02 16:38:49 +03:30

17 lines
440 B
Plaintext

// Buffer.byteLength polyfill in the Edge runtime, with only utf8 strings
// supported at the moment.
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "byteLength", {
enumerable: true,
get: function() {
return byteLength;
}
});
function byteLength(payload) {
return new TextEncoder().encode(payload).buffer.byteLength;
}
//# sourceMappingURL=web.js.map