Travis build: 590 [cron]

This commit is contained in:
30secondsofcode
2018-10-03 20:17:00 +00:00
parent 0c33860b0f
commit d9de6e6977
6 changed files with 460 additions and 2110 deletions

View File

@ -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' &&

File diff suppressed because it is too large Load Diff

View File

@ -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;