0.0.2 • Published 10 years ago

restrict-object v0.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
10 years ago

restrict-object

Allows javascript to restrict object key value pairs by an array

    var refinedObject = restrictObject(
        {
            want: 'yes',
            wantalso: 'ohh yeah',
            dont: 'nope'
        },
        [ 'want', 'wantalso' ]
    );
    
    refinedObject == {
      want: 'yes',
      wantalso: 'ohh yeah'
    }
0.0.2

10 years ago

0.0.1

10 years ago