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

package.dist.esm.styled-system.map-to-json.js Maven / Gradle / Ivy

Go to download

Responsive and accessible React UI components built with React and Emotion

The newest version!
"use strict";
function mapToJson(map) {
  const obj = {};
  map.forEach((value, key) => {
    if (value instanceof Map) {
      obj[key] = Object.fromEntries(value);
    } else {
      obj[key] = value;
    }
  });
  return obj;
}

export { mapToJson };




© 2015 - 2025 Weber Informatics LLC | Privacy Policy