• File: hash-to-segments.js
  • Full Path: /home6/laduliya/test.mydthpay.com/node_modules/npm/node_modules/cacache/lib/util/hash-to-segments.js
  • Date Modified: 10/26/1985 11:45 AM
  • File size: 159 bytes
  • MIME-type: text/plain
  • Charset: utf-8
'use strict'

module.exports = hashToSegments

function hashToSegments (hash) {
  return [
    hash.slice(0, 2),
    hash.slice(2, 4),
    hash.slice(4)
  ]
}