UNPKG

normalize-event

Version:

A function that provides basic DOM Event support in IE8 and below.

12 lines (11 loc) 270 B
module.exports = function (e) { e = e || event e.target = e.target || e.srcElement e.preventDefault = e.preventDefault || function() { e.returnValue = false } e.stopPropagation = e.stopPropagation || function() { e.cancelBubble = true } return e }