mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
13 lines
274 B
JavaScript
13 lines
274 B
JavaScript
var common = require("./url_common.js");
|
|
var URL = exports.URL = common.URL;
|
|
|
|
URL._constructUrl = function (url, query, params) {
|
|
var query_match = /^(.*?)(\?.*)?$/.exec(url);
|
|
return common.buildUrl(
|
|
query_match[1],
|
|
query_match[2],
|
|
query,
|
|
params
|
|
);
|
|
};
|