UNPKG

@hackoregon/utils

Version:
10 lines (8 loc) 170 B
const getKeyNames = obj => { const keyNames = {}; Object.keys(obj).forEach(key => { keyNames[key] = key; }); return keyNames; }; export default getKeyNames;