We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 168128a commit 538524cCopy full SHA for 538524c
dist/flow.js
@@ -1283,6 +1283,10 @@
1283
* @returns {string}
1284
*/
1285
getTarget: function(target, params){
1286
+ if (params.length == 0) {
1287
+ return target;
1288
+ }
1289
+
1290
if(target.indexOf('?') < 0) {
1291
target += '?';
1292
} else {
@@ -1613,7 +1617,7 @@
1613
1617
* Library version
1614
1618
* @type {string}
1615
1619
1616
- Flow.version = '2.13.1';
1620
+ Flow.version = '2.13.2';
1621
1622
if ( typeof module === "object" && module && typeof module.exports === "object" ) {
1623
// Expose Flow as module.exports in loaders that implement the Node
0 commit comments