hash-to-segments.js 143 B

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