Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const verifyChecksum = (stringWithChecksum) => {
  2.   const [string, sectorId, checksum] = splitChecksum(stringWithChecksum)
  3.   const calculatedChecksum = calculateChecksum(string)
  4.   return calculatedChecksum === checksum
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement