Skip to content

Commit

Permalink
JS: fix typo in interop.js
Browse files Browse the repository at this point in the history
  • Loading branch information
kanaka committed Apr 11, 2016
1 parent 61c1fa0 commit 6596076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/interop.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if (typeof module === 'undefined') {

function resolve_js(str) {
if (str.match(/\./)) {
var re = /^(.*)\.\([^\.]*)$/,
var re = /^(.*)\.([^\.]*)$/,
match = re.exec(str);
return [eval(match[0]), eval(str)];
} else {
Expand Down

0 comments on commit 6596076

Please sign in to comment.