search()
doesn't work when loaded from a node.js module required into an nw.js app
#33
Labels
search()
doesn't work when loaded from a node.js module required into an nw.js app
#33
The
rgex = value instanceof RegExp
is alwaysfalse
in this case because theConstructors
are not the same (diff sandbox). It can be corrected by checking iftypeof value.test === 'function'
.The text was updated successfully, but these errors were encountered: