blob: 192be2a6d650a708c2a64f77e92bb9b1f14fbc44 [file] [log] [blame]
'use strict'
module.exports = hashToSegments
function hashToSegments (hash) {
return [
hash.slice(0, 2),
hash.slice(2, 4),
hash.slice(4)
]
}