You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 202B

1234567
  1. var path = require('path')
  2. var uniqueSlug = require('unique-slug')
  3. module.exports = function (filepath, prefix, uniq) {
  4. return path.join(filepath, (prefix ? prefix + '-' : '') + uniqueSlug(uniq))
  5. }