diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2024-03-13 10:57:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-13 10:57:59 +0000 |
commit | f377fce640002c687bb2f36918f857fcc2f7bc7b (patch) | |
tree | 2192831a7a9328e8fb1030fc0e127ac841e73024 /ext/node/polyfills/internal/primordials.mjs | |
parent | 5cfa03ceca396b1c21a826cb44a984329cf35078 (diff) |
feat(node): implement fs.statfs() (#22862)
Diffstat (limited to 'ext/node/polyfills/internal/primordials.mjs')
-rw-r--r-- | ext/node/polyfills/internal/primordials.mjs | 1 |
1 files changed, 1 insertions, 0 deletions
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; |