is-phantom
Version:
Check if current running context is PhantomJS.
17 lines (13 loc) • 407 B
JavaScript
(function(exports) {
'use strict';
function isPhantom() {
return !!(typeof window != 'undefined' && window.callPhantom && window._phantom);
}
if(typeof define === 'function' && define.amd) {
define(function() { return isPhantom; });
} else if(typeof module !== 'undefined' && module.exports) {
module.exports = isPhantom;
} else {
exports.isPhantom = isPhantom;
}
})(this);