just-pick
TypeScript icon, indicating that this package has built-in type declarations

4.2.0 • Public • Published

just-pick

Part of a library of zero-dependency npm modules that do just do one thing. Guilt-free utilities for every occasion.

🍦 Try it

npm install just-pick
yarn add just-pick

Copy an object but with only the specified keys

import pick from 'just-pick';

var obj = { a: 3, b: 5, c: 9 };
pick(obj, ['a', 'c']); // {a: 3, c: 9}
pick(obj, 'a', 'c'); // {a: 3, c: 9}
pick(obj, ['a', 'b', 'd']); // {a: 3, b: 5}
pick(obj, ['a', 'a']); // {a: 3}

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i just-pick

      Weekly Downloads

      9,661

      Version

      4.2.0

      License

      MIT

      Unpacked Size

      5.16 kB

      Total Files

      9

      Last publish

      Collaborators

      • angus-c