ohctechv3/.svn/pristine/54/54ea21869a108a1f81b58de9bda326582338adad.svn-base
2024-10-28 15:03:36 +05:30

15 lines
235 B
Plaintext

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