12 lines
236 B
JavaScript
12 lines
236 B
JavaScript
"use strict";
|
|
|
|
/* globals exportFunction */
|
|
|
|
Object.defineProperty(window.wrappedJSObject, "isTestFeatureSupported", {
|
|
get: exportFunction(function() {
|
|
return true;
|
|
}, window),
|
|
|
|
set: exportFunction(function() {}, window),
|
|
});
|