npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

filter-keys

1.1.0

@jonschlinkert

npmHomeRepoSnykSocket
Downloads:2046
$ npm install filter-keys
DailyWeeklyMonthlyYearly

filter-keys NPM version Build Status

Filter the keys of an object using glob patterns.

Install with npm

$ npm i filter-keys --save

Usage

var filterKeys = require('filter-keys');

filterKeys({foo: 'a', bar: 'b', baz: 'c'}, 'b*');
//=> ['bar', 'baz']

Related

  • 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

Running tests

Install dev dependencies:

$ npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Author

Jon Schlinkert

  • github/jonschlinkert
  • twitter/jonschlinkert

License

Copyright © 2015 Jon Schlinkert Released under the MIT license.


This file was generated by verb-cli on September 08, 2015.