Merge branch '3.99' into 4.0

This commit is contained in:
Steve Gravrock
2021-05-22 09:09:03 -07:00
8 changed files with 131 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
/* eslint-disable compat/compat */
(function(env) {
function hasProxyConstructor() {
try {
new Proxy({}, {});
return true;
} catch (e) {
return false;
}
}
env.requireProxy = function() {
if (!hasProxyConstructor()) {
env.pending('Environment does not support Proxy');
}
};
})(jasmine.getEnv());