We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Lists all values. 🏃 📼 📦 🌔
map.values(x); // x: a map // --> ...values
const map = require('extra-map'); var x = new Map([['A', 1], ['B', 2]]); [...map.values(x)]; // [ 1, 2 ] var x = new Map([['A', 1], ['B', 2], ['C', 3]]); [...map.values(x)] // [ 1, 2, 3 ]