object.js 202 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 /** * Create an object with a `null` prototype. */ "use strict"; exports.__esModule = true; exports["default"] = function () { return Object.create(null); }; module.exports = exports["default"];