Files
Botexercito/Frontend/angular-internal-chat/node_modules/thingies/lib/hasKeys.js
T
2026-03-22 18:07:19 +00:00

10 lines
226 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.hasKeys = void 0;
const hasKeys = (obj) => {
for (const key in obj)
return true;
return false;
};
exports.hasKeys = hasKeys;