nullishReceiverError.js 150 B

1234
  1. function _nullishReceiverError(r) {
  2. throw new TypeError("Cannot set property of null or undefined.");
  3. }
  4. export { _nullishReceiverError as default };