jsdom
Version:
A JavaScript implementation of many web standards
28 lines (20 loc) • 364 B
JavaScript
;
const idlUtils = require("../generated/utils");
exports.implementation = class PluginArray {
refresh() {}
get length() {
return 0;
}
item() {
return null;
}
namedItem() {
return null;
}
get [idlUtils.supportedPropertyIndices]() {
return [];
}
get [idlUtils.supportedPropertyNames]() {
return [];
}
};