See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| function parseBool (value){ | |
| var isEmptyString = (typeof value === "string" && value.length <= 0); | |
| var isFalsy = typeof value === "undefined" || isEmptyString; | |
| return !isFalsy && !!JSON.parse(value); | |
| }; |
| function clone(obj) { | |
| var ctr = Object.getPrototypeOf(obj).constructor; | |
| return Object.assign(new ctr(), obj); | |
| } |