UNPKG

find-node-modules

Version:

Return an array of all parent node_modules directories

10 lines (9 loc) 227 B
export function lowercaseKeys(object) { if (!object) { return {}; } return Object.keys(object).reduce((newObj, key) => { newObj[key.toLowerCase()] = object[key]; return newObj; }, {}); }