Skip to content

Commit

Permalink
Re-add not-false check
Browse files Browse the repository at this point in the history
  • Loading branch information
teddybradford committed Jan 12, 2024
1 parent 79d7f19 commit ab7efcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default function retextSmartypants(options) {
methods.push(ellipsesSpaced)
} else if (settings.ellipses === 'unspaced') {
methods.push(ellipsesUnspaced)
} else if (settings.ellipses) {
} else if (settings.ellipses !== false) {
methods.push(ellipsesDefault)
}

Expand Down

0 comments on commit ab7efcb

Please sign in to comment.