key-by-val
v1.0.0
Published
lookup a key by a value in an object
Downloads
3
Readme
key-by-val
tiny fn I seem to find myself needing often
var kByV = require('key-by-val')
var consts = {
public: 1,
private: 2,
happy: 3
}
var blah = {
type: 3
}
var typeName = kByV(consts, blah.type) // === 'happy'