Home Reference Source

src/observations/getRank.js

  1. import get from "lodash.get";
  2.  
  3. /**
  4. * Get the numeric rank for the given observation.
  5. * @param {Object} observation
  6. * @return {number}
  7. */
  8. export const getRank = (observation) => get(observation, "rank", null);