Files
starface-outlook-sync-addin/node_modules/thingies/lib/hasKeys.js
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02: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;