UNPKG

ropods-cashify

Version:

Modern, lightweight currency conversion library with real-time exchange rates, INR support, and free API integration. Production-ready TypeScript library for RoPods organization with zero dependencies and comprehensive testing.

9 lines 261 B
/** * Check if an object contains a key. * @param obj The object to check. * @param key The key to check for. */ export default function hasKey(object, key) { return Object.prototype.hasOwnProperty.call(object, key); } //# sourceMappingURL=has-key.js.map