
import * as objectHash from 'object-hash'

function sha1Hash (object: any): string {
  return objectHash.sha1(object)
}

export {
  sha1Hash
}