Files
Lab4/32/node_modules/@pkgjs/parseargs/internal/util.js
MishaBagger b6c10cc93f MACHIN
2023-10-25 09:15:21 +03:00

15 lines
235 B
JavaScript

'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,
};