Skip to content

Instantly share code, notes, and snippets.

@MrMeison
Created January 8, 2020 21:36
Show Gist options
  • Save MrMeison/79dbc5b42acbac9e42f4ffcd04f880d1 to your computer and use it in GitHub Desktop.
Save MrMeison/79dbc5b42acbac9e42f4ffcd04f880d1 to your computer and use it in GitHub Desktop.
Хелпер для работы с параметрами запросов
var CGI = {};
CGI.buildQueryParams = function(params) {
var res = [];
for(var key in params) {
res.push(key + '=' + params[key]);
}
return res.length > 0 ? '?' + res.join('&') : '';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment