objectDestructuringEmpty.js 155 B

1234
  1. function _objectDestructuringEmpty(t) {
  2. if (null == t) throw new TypeError("Cannot destructure " + t);
  3. }
  4. export { _objectDestructuringEmpty as default };