Browse Source

bip21: use RegExp.exec instead of String.match.

patch-2
Christopher Jeffrey 11 years ago
parent
commit
f46cc65aba
  1. 2
      lib/BIP21.js

2
lib/BIP21.js

@ -56,7 +56,7 @@ BIP21.prototype.parse = function(uri) {
} }
// workaround to host insensitiveness // workaround to host insensitiveness
var group = uri.match('[^:]*:/?/?([^?]*)'); var group = /[^:]*:/?/?([^?]*)/.exec(uri);
this.setAddress(group && group[1]); this.setAddress(group && group[1]);
for (var arg in info.query) { for (var arg in info.query) {

Loading…
Cancel
Save