jsdom
Version:
A JavaScript implementation of many web standards
38 lines (28 loc) • 479 B
JavaScript
exports.implementation = class NavigatorIDImpl {
get appCodeName() {
return "Mozilla";
}
get appName() {
return "Netscape";
}
get appVersion() {
return "4.0";
}
get platform() {
return "";
}
get product() {
return "Gecko";
}
get productSub() {
return "20030107";
}
// see Navigator constructor for userAgent
get vendor() {
return "Apple Computer, Inc.";
}
get vendorSub() {
return "";
}
};
;