rmrantunes / arrayql-js

Map and filter your array of objects

Home Page:https://www.npmjs.com/package/arrayql-js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add __allKeys prop to BooleanKeys

rmrantunes opened this issue · comments

What if I just wanted to select all keys of an object instead of manually select all of them?

const fullAddressesInfo = arrayQL(users, {
  keys: {
    address: {
      __allKeys: true,
    },
  },
});