is-object-empty2 1.0.8 → 1.0.9

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -54,7 +54,7 @@ console.log(isObjectEmpty2(undefined)); // false
54
54
 
55
55
  ## TypeScript
56
56
  ```javascript
57
- import isObjectEmpty2 = require('is-object-empty2');
57
+ import isObjectEmpty2 from 'is-object-empty2';
58
58
 
59
59
  const testValues: unknown[] = [
60
60
  {},
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.0.8
3
+ * @version: v1.0.9
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.0.8",
3
+ "version": "1.0.9",
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",