Skip to content

Commit

Permalink
Release v2.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
AidasK committed Jun 13, 2019
1 parent 168128a commit 538524c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion dist/flow.js
Original file line number Diff line number Diff line change
Expand Up @@ -1283,6 +1283,10 @@
* @returns {string}
*/
getTarget: function(target, params){
if (params.length == 0) {
return target;
}

if(target.indexOf('?') < 0) {
target += '?';
} else {
Expand Down Expand Up @@ -1613,7 +1617,7 @@
* Library version
* @type {string}
*/
Flow.version = '2.13.1';
Flow.version = '2.13.2';

if ( typeof module === "object" && module && typeof module.exports === "object" ) {
// Expose Flow as module.exports in loaders that implement the Node
Expand Down
Loading

0 comments on commit 538524c

Please sign in to comment.