1'use strict'; 2 3// This is a placeholder for util.js in node.js land. 4 5const { 6 ObjectCreate, 7 ObjectFreeze, 8} = require('./primordials'); 9 10const kEmptyObject = ObjectFreeze(ObjectCreate(null)); 11 12module.exports = { 13 kEmptyObject, 14}; 15