Skip to content

Acro/filter-properties

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 

Repository files navigation

filter-properties

Filter object properties using a whitelist

Installation

npm install filter-properties --save

API

filter(Array whitelist, Object object) -> Object

The whitelist is an Array of strings.

var whitelist = [ "username" ]

The object is the input data.

var object = { username: "acro", gender: "male" }

Applying the filter function onto these two inputs will return a filtered object.

var filter = require("filter-properties")

var filtered = filter(whitelist, object)
// { username: "acro" }

Dependencies

This library has no dependencies.

License

MIT

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published