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

This commit is contained in:
Christopher Jeffrey 2014-08-12 11:03:01 -04:00
parent b361bfe1d0
commit f46cc65aba
1 changed files with 1 additions and 1 deletions

View File

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