wallet-core/thirdparty/systemjs/test/tests/global-inaccessible-props.js

9 lines
185 B
JavaScript

(function(window) {
if (!('errorOnAccess' in window))
throw Error();
window.test = 'result of global-inaccessible-props';
})(typeof window != 'undefined' ? window : global);