Bones/node_modules/systemjs/test/tests/global-inaccessible-props.js

9 lines
185 B
JavaScript
Raw Normal View History

2017-05-17 13:45:25 -04:00
(function(window) {
if (!('errorOnAccess' in window))
throw Error();
window.test = 'result of global-inaccessible-props';
})(typeof window != 'undefined' ? window : global);