Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/f2prateek/plectrum

Plectrum lets you quickly pick specific keys in map.
https://github.com/f2prateek/plectrum

Last synced: about 1 month ago
JSON representation

Plectrum lets you quickly pick specific keys in map.

Awesome Lists containing this project

README

        

# Plectrum

Plectrum lets you quickly pick specific keys in map.

## Example

```go
event := map[string]interface{}{
"name": map[string]interface{}{
"first": "prateek",
"last": "srivastava",
},
"username": "f2prateek",
"age": 23
}

Pick(event, []string{"username", "age"})
// {"username": "f2prateek", "age": 23}

Pick(event, []string{"username", "foo"})
// {"username": "f2prateek"}
```