mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 05:38:36 +00:00

PR-URL: https://github.com/nodejs/node/pull/3310 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
9 lines
215 B
JavaScript
9 lines
215 B
JavaScript
'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))
|
|
}
|