Skip to content

Commit 222aa79

Browse files
committed
fix: improve readablity
1 parent 49a0ee6 commit 222aa79

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

index.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,11 @@ function parserWrapper() {
119119
return postHTMLParser(html, opt);
120120
}
121121

122-
if (arguments.length === 1 &&
123-
arguments[0] !== null &&
124-
typeof arguments[0] === 'object' &&
125-
Array.isArray(arguments[0]) === false) {
122+
if (
123+
arguments.length === 1 &&
124+
Boolean(arguments[0]) &&
125+
arguments[0].constructor.name === 'Object'
126+
) {
126127
option = arguments[0];
127128
return parser;
128129
}

0 commit comments

Comments
 (0)