We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecd78bd commit 47ca78bCopy full SHA for 47ca78b
.release-it.js
@@ -3,5 +3,8 @@ module.exports = {
3
'@release-it/keep-a-changelog': {
4
addVersionUrl: true,
5
},
6
+ github: {
7
+ release: true,
8
+ },
9
10
};
src/far-fetch-helper.js
@@ -10,6 +10,10 @@ export default class FarFetchHelper {
return Object.prototype.toString.call(value) === '[object Object]';
11
}
12
13
+ static isEmptyObject(value) {
14
+ return this.isPlainObject(value) && Object.keys(value).length === 0;
15
+ }
16
+
17
/**
18
* Checks if string is an absolute URL.
19
* Credit: https://github.com/sindresorhus/is-absolute-url
0 commit comments