UNPKG

226 BJavaScriptView Raw
1'use strict'
2
3const url = require('blear.utils.url')
4
5const pkg = require('../package.json')
6
7module.exports = function (pathname) {
8 return url.join(pkg.homepage, pathname || '/') + '?from=' + pkg.name + '=' + pkg.version
9}