util.js 235 B

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