ohctechv3/.svn/pristine/54/54ea21869a108a1f81b58de9bda326582338adad.svn-base

15 lines
235 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
'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,
};