tuiHoneyPot

front and back end of my TUI honeypot
Log | Files | Refs | README

isWindow.js (126B)


      1 define( function() {
      2 	"use strict";
      3 
      4 	return function isWindow( obj ) {
      5 		return obj != null && obj === obj.window;
      6 	};
      7 
      8 } );