added unit testing, and started implementing unit tests...phew
This commit is contained in:
13
node_modules/yaeti/lib/Event.js
generated
vendored
Normal file
13
node_modules/yaeti/lib/Event.js
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
/**
|
||||
* Expose the Event class.
|
||||
*/
|
||||
module.exports = _Event;
|
||||
|
||||
|
||||
function _Event(type) {
|
||||
this.type = type;
|
||||
this.isTrusted = false;
|
||||
|
||||
// Set a flag indicating this is not a DOM Event object
|
||||
this._yaeti = true;
|
||||
}
|
Reference in New Issue
Block a user