(key, value)
| 35 | const debug = makeDebugger('dropdown') |
| 36 | |
| 37 | const getKeyOrValue = (key, value) => (_.isNil(key) ? value : key) |
| 38 | const getKeyAndValues = (options) => |
| 39 | options ? options.map((option) => _.pick(option, ['key', 'value'])) : options |
| 40 |
no outgoing calls
no test coverage detected
searching dependent graphs…