See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
/** | |
* Variation of https://gist.github.com/luk-/2722097 | |
*/ | |
function toQueryString(obj, recursiveKey) { | |
if(obj == null || typeof obj !== "object"){ | |
return ""; | |
} | |
let keys = Object.keys(obj); |