From f377fce640002c687bb2f36918f857fcc2f7bc7b Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Wed, 13 Mar 2024 10:57:59 +0000 Subject: feat(node): implement fs.statfs() (#22862) --- ext/node/polyfills/internal/primordials.mjs | 1 + 1 file changed, 1 insertion(+) (limited to 'ext/node/polyfills/internal') diff --git a/ext/node/polyfills/internal/primordials.mjs b/ext/node/polyfills/internal/primordials.mjs index d3726cf45..f1e775bc5 100644 --- a/ext/node/polyfills/internal/primordials.mjs +++ b/ext/node/polyfills/internal/primordials.mjs @@ -12,6 +12,7 @@ export const ArrayPrototypeSlice = (that, ...args) => that.slice(...args); export const ArrayPrototypeSome = (that, ...args) => that.some(...args); export const ArrayPrototypeSort = (that, ...args) => that.sort(...args); export const ArrayPrototypeUnshift = (that, ...args) => that.unshift(...args); +export const BigInt = globalThis.BigInt; export const ObjectAssign = Object.assign; export const ObjectCreate = Object.create; export const ObjectHasOwn = Object.hasOwn; -- cgit v1.2.3