UNPKG

@tdb/web

Version:

Common condiguration for serving a web-site and testing web-based UI components.

9 lines (6 loc) 215 B
'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)) }