0
0
mirror of https://github.com/Doodle3D/Doodle3D-API synced 2025-01-11 04:55:09 +01:00

12 lines
223 B
JavaScript
Raw Normal View History

2015-07-15 15:06:18 +02:00
/* */
"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;