Skip to content

Instantly share code, notes, and snippets.

@beatak
Created August 5, 2016 22:06
Show Gist options
  • Save beatak/d2fddf05488a7332a2ce769aceb00228 to your computer and use it in GitHub Desktop.
Save beatak/d2fddf05488a7332a2ce769aceb00228 to your computer and use it in GitHub Desktop.
ES6 Map object serialize
var convertMapToObj = function (myMap) {
var obj = {};
myMap.forEach(function (value, key) {
obj[key] = value;
});
return obj;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment