mirror of
https://github.com/Doodle3D/Doodle3D-API
synced 2025-01-11 04:55:09 +01:00
12 lines
223 B
JavaScript
12 lines
223 B
JavaScript
/* */
|
|
"use strict";
|
|
|
|
exports["default"] = function (val, name, undef) {
|
|
if (val === undef) {
|
|
throw new ReferenceError(name + " is not defined - temporal dead zone");
|
|
}
|
|
|
|
return true;
|
|
};
|
|
|
|
exports.__esModule = true; |