Skip to content

Commit cb9effa

Browse files
committed
size: label Buffer global as pure
1 parent d76e939 commit cb9effa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fallback/_utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export * from './platform.js'
22

3-
const { Buffer } = globalThis
3+
const Buffer = /* @__PURE__ */ (() => globalThis.Buffer)()
44

55
export function assert(condition, msg) {
66
if (!condition) throw new Error(msg)

0 commit comments

Comments
 (0)