4 lines
94 B
JavaScript
4 lines
94 B
JavaScript
(function (obj) {
|
|
if (obj == null) throw new TypeError("Cannot destructure undefined");
|
|
});
|