is-object-empty2 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,8 +17,8 @@ jobs:
17
17
  if: ${{ github.actor != 'dependabot[bot]' }}
18
18
 
19
19
  steps:
20
- - uses: actions/checkout@v4
21
- - uses: actions/setup-node@v4
20
+ - uses: actions/checkout@v6
21
+ - uses: actions/setup-node@v6
22
22
  with:
23
23
  node-version: lts/krypton
24
24
 
@@ -38,8 +38,8 @@ jobs:
38
38
  id-token: write # 👈 REQUIRED for Trusted Publishing
39
39
 
40
40
  steps:
41
- - uses: actions/checkout@v4
42
- - uses: actions/setup-node@v4
41
+ - uses: actions/checkout@v6
42
+ - uses: actions/setup-node@v6
43
43
  with:
44
44
  node-version: lts/krypton
45
45
  registry-url: https://registry.npmjs.org/
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * is-object-empty2 - 📦 Tiny utility to check if a value is a plain empty object in JavaScript and TypeScript
3
- * @version: v1.1.0
3
+ * @version: v1.1.1
4
4
  * @link: https://github.com/tutyamxx/is-object-empty2
5
5
  * @license: MIT
6
6
  **/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "is-object-empty2",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "📦 Tiny utility to check if a value is a plain empty object in JavaScript or TypeScript",
5
5
  "main": "index.js",
6
6
  "module": "index.js",