object-pick-ts
v1.0.3
Published
Typescript version for _.pick from lodash. Returns filtered object based on keys in arguments
Maintainers
Readme
object-pick-ts
Install
Install with npm:
$ npm install --save object-pick-ts
Usage
import {ObjectPick as pick} from "object-pick-ts";
let result = pick({a: 'a', b: 'b', c: 2}, ['a', 'c']);
//{a: 'a', c: 2};About
Related projects object.pick (https://www.npmjs.com/package/object.pick): JS version of this package
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Author
Przemek Struciński (delprzemo)
github/delprzemo License Copyright © 2016, Przemek Struciński. Released under the MIT license.
