List of utility methods to do Event Type Check
Event.prototype.isFileDrag = function() { return ( this.dataTransfer !== undefined && this.dataTransfer.items.length > 0 && this.dataTransfer.items[0].kind === 'file' ); };