Open
Description
Not an issue, but what do you think about including a "project" function to return a projection over a dataset, something like this:
projectAddress = project(["house", "street"]);
data = [{house: 24, street: "Main", name: "John"}, {house: 35, street: "Park", name: "Phil"}]
projectAddress(data)
// [ { house: 24, street: 'Main' }, { house: 35, street: 'Park' } ]
Here's a quick implementation:
projectOne = fields => obj => fields.reduce((x,y) => {x[y] = obj[y]; return x}, {})
project = fields => fjs.map(projectOne(fields))