"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.objectEntries = objectEntries;
/**
* @nameobjectEntries
* @summary A version of Object.entries that is typed for TS
*/functionobjectEntries(obj) {
returnObject.entries(obj);
}