All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.esm.utils.entries.js Maven / Gradle / Ivy

Go to download

Responsive and accessible React UI components built with React and Emotion

The newest version!
"use strict";
function mapEntries(obj, f) {
  const result = {};
  for (const key in obj) {
    const kv = f(key, obj[key]);
    result[kv[0]] = kv[1];
  }
  return result;
}

export { mapEntries };




© 2015 - 2025 Weber Informatics LLC | Privacy Policy