object-destructuring-empty.js 155 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 "use strict"; exports["default"] = function (obj) { if (obj == null) throw new TypeError("Cannot destructure undefined"); }; exports.__esModule = true;