Auto serialize and deserialize keys for ECMAScript 2016 Map
npm install nonstrict-map

![Node version]()
![MIT License]()

`` js
const map = new NonStrictMap([
[ { x: 5, y: 6 }, someValue ],
]);
map.get({ x: 5, y: 6 }) === someValue;
``