We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
List all values.
Similar: randomValue, values, hasValue.
function values(x) // x: lists
const xlists = require('extra-lists'); var x = [['a', 'b', 'c'], [1, 2, 3]]; [...xlists.values(x)]; // → [ 1, 2, 3 ]