summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/@pkgjs/parseargs/internal/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/@pkgjs/parseargs/internal/util.js')
-rw-r--r--deps/npm/node_modules/@pkgjs/parseargs/internal/util.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/deps/npm/node_modules/@pkgjs/parseargs/internal/util.js b/deps/npm/node_modules/@pkgjs/parseargs/internal/util.js
new file mode 100644
index 0000000000..b9b8fe5b8d
--- /dev/null
+++ b/deps/npm/node_modules/@pkgjs/parseargs/internal/util.js
@@ -0,0 +1,14 @@
+'use strict';
+
+// This is a placeholder for util.js in node.js land.
+
+const {
+ ObjectCreate,
+ ObjectFreeze,
+} = require('./primordials');
+
+const kEmptyObject = ObjectFreeze(ObjectCreate(null));
+
+module.exports = {
+ kEmptyObject,
+};