We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Check if value is a map.
function is(v) // v: value
const map = require('extra-map'); map.is(new Map([['a', 1], ['b', 2]])); // → true map.is(new Map()); // → true map.is(1); // → false