Skip to content

Instantly share code, notes, and snippets.

@dhoko
Last active February 23, 2016 13:08
Show Gist options
  • Select an option

  • Save dhoko/1e09d7670bcdcea1400c to your computer and use it in GitHub Desktop.

Select an option

Save dhoko/1e09d7670bcdcea1400c to your computer and use it in GitHub Desktop.
function mockUserAgent(ua) {
'use strict';
var copyNav = navigator;
navigator = {};
navigator.__proto__ = copyNav;
navigator.__defineGetter__('userAgent', function() {
return ua;
});
return copyNav.userAgent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment