Filter the keys of an object using glob patterns.
npm install filter-keys> Filter the keys of an object using glob patterns.
Install with npm
``sh`
$ npm i filter-keys --save
`js
var filterKeys = require('filter-keys');
filterKeys({foo: 'a', bar: 'b', baz: 'c'}, 'b*');
//=> ['bar', 'baz']
`
* filter-object: Filter an object by its keys or values. Returns a copy of an object filtered… more | homepage
* filter-values: Filter an object values using glob patterns or with a callback function returns true. | homepage
* micromatch: Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. Just… more | homepage
* rename-keys: Modify the names of the own enumerable properties (keys) of an object. | homepage
* sort-object: Sort the keys in an object. | homepage
Install dev dependencies:
`sh``
$ npm i -d && npm test
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Jon Schlinkert
+ github/jonschlinkert
+ twitter/jonschlinkert
Copyright © 2015 Jon Schlinkert
Released under the MIT license.
*
_This file was generated by verb-cli on September 08, 2015._