UNPKG

orcs-design-system

Version:
5 lines 162 B
import { find } from "lodash"; export const getOptionByValue = (options, value) => { return find(options, ["value", value]); }; export default getOptionByValue;