UNPKG

addsearch-search-ui

Version:

JavaScript library to develop Search UIs for the web

11 lines (10 loc) 296 B
export function isEmpty(obj) { return !obj ? true : Object.keys(obj).length === 0; } export function convertMapKeysToLowerCase(obj) { if (!obj) return; return Object.keys(obj).reduce((accumulator, key) => { accumulator[key.toLowerCase()] = obj[key]; return accumulator; }, {}); }