UNPKG

@chakra-ui/react

Version:

Responsive and accessible React UI components built with React and Emotion

15 lines (13 loc) 254 B
"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 };