mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-16 04:08:34 +03:00
10 lines
222 B
JavaScript
10 lines
222 B
JavaScript
|
var config = require('../../config'),
|
||
|
getUrl = require('./url');
|
||
|
|
||
|
function getCanonicalUrl(data) {
|
||
|
return config.urlJoin(config.getBaseUrl(false),
|
||
|
getUrl(data, false));
|
||
|
}
|
||
|
|
||
|
module.exports = getCanonicalUrl;
|