greena13/react-hotkeys

View on GitHub
src/utils/collection/size.js

Summary

Maintainability
A
0 mins
Test Coverage
import isObject from '../object/isObject';

function size(collection) {
  return isObject(collection) ? Object.keys(collection).length : collection.length;
}

export default size;