Travis build: 590 [cron]
This commit is contained in:
@ -2,7 +2,6 @@ const isDuplexStream = val =>
|
||||
val !== null &&
|
||||
typeof val === 'object' &&
|
||||
typeof val.pipe === 'function' &&
|
||||
typeof val.pipe === 'function' &&
|
||||
typeof val._read === 'function' &&
|
||||
typeof val._readableState === 'object' &&
|
||||
typeof val._write === 'function' &&
|
||||
|
||||
2473
test/testlog
2473
test/testlog
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,3 @@
|
||||
const triggerEvent = (el, eventType, detail = undefined) =>
|
||||
el.dispatchEvent(new CustomEvent(eventType, { detail: detail }));
|
||||
const triggerEvent = (el, eventType, detail) =>
|
||||
el.dispatchEvent(new CustomEvent(eventType, { detail }));
|
||||
module.exports = triggerEvent;
|
||||
|
||||
Reference in New Issue
Block a user