1'use strict'
2
3module.exports = hashToSegments
4
5function hashToSegments (hash) {
6  return [hash.slice(0, 2), hash.slice(2, 4), hash.slice(4)]
7}
8