chore: linting fix
This commit is contained in:
parent
3096dd9513
commit
a187d07807
@ -22,10 +22,10 @@ const isPromise = (input) => instanceOf(input, Promise) && isFunction(input.then
|
||||
|
||||
const isElement = (input) =>
|
||||
input !== null &&
|
||||
(typeof input === "object") &&
|
||||
(input.nodeType === 1) &&
|
||||
(typeof input.style === "object") &&
|
||||
(typeof input.ownerDocument === "object");
|
||||
typeof input === 'object' &&
|
||||
input.nodeType === 1 &&
|
||||
typeof input.style === 'object' &&
|
||||
typeof input.ownerDocument === 'object';
|
||||
|
||||
const isEmpty = (input) =>
|
||||
isNullOrUndefined(input) ||
|
||||
|
Loading…
x
Reference in New Issue
Block a user