summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/cacache/node_modules/unique-filename/index.js
blob: 02bf1e273143c1f01671276492ea86af6e08d53a (plain)
1
2
3
4
5
6
7
8
'use strict'
var path = require('path')

var uniqueSlug = require('unique-slug')

module.exports = function (filepath, prefix, uniq) {
  return path.join(filepath, (prefix ? prefix + '-' : '') + uniqueSlug(uniq))
}