mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
11 lines
216 B
JavaScript
11 lines
216 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; |