Skip to content

Commit bf864f6

Browse files
committed
fix: one less thing to review
1 parent 95c138e commit bf864f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/options.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const defaultOptions = {
2020

2121
export default function setOptions(options) {
2222
// combine options
23-
options = isObject('object') ? options : {}
23+
options = isObject(options) ? options : {}
2424

2525
for (const key in defaultOptions) {
2626
if (!options[key]) {

0 commit comments

Comments
 (0)