You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just think about it
The second check (!options || options.force !== false) does not make sense
The case should be triggered when there is some options passed in and the "force" property has "not falsy" value what is literally duplicate the first if branch
The text was updated successfully, but these errors were encountered:
https://github.com/jugglinmike/srcdoc-polyfill/blob/master/srcdoc-polyfill.js#L33
This is a bug it should look like this:
Just think about it
The second check
(!options || options.force !== false)
does not make senseThe case should be triggered when there is some options passed in and the "force" property has "not falsy" value what is literally duplicate the first if branch
The text was updated successfully, but these errors were encountered: