## 📦 Release `v1.10.2` – Object Detection Upgrade! 🧱✨

### ✨ What's New

#### 🧼 `isJsonObject(value)` – **Now Stronger Than Ever!**

Our object purity checker has been upgraded to strictly validate **only** plain JSON-style objects.

```js
isPureJsonObject({}); // ✅ true
isPureJsonObject(new Date()); // ❌ false
```

This means:

* ❌ No `Array`, `Date`, `Map`, `Set`, `Buffer`, or any other exotic object
* ✅ Only `{}` or `new Object()` style values pass

> Tip: Use `isJsonObject()` when you want **real JSON-like purity**, not just "typeof object" 😉

> I just did a quick review of the JSDoc comments in the `objFilter.mjs` file — no deep changes, just a light inspection. 📝

**Full Changelog**: https://github.com/JasminDreasond/Tiny-Essentials/compare/1.10.0...1.10.2