UNPKG

@gleefullychill/lotide

Version:

A library based off of lodash for a student project

14 lines 298 B
const findKeyByValue = function(obj, val) { for (const item in obj) { if (obj[item] === val) { return item; } } return; }; // const bestTVShowsByGenre = { // sciFi: "The Expanse", // comedy: "Brooklyn Nine-Nine", // drama: "The Wire" // }; module.exports = findKeyByValue;