Ghost/core/server/helpers/facebook_url.js
Hannah Wolfe bcf5a1bc34
Switch to Eslint (#9197)
refs #9178

* Add eslint deps, remove old lint deps
* Add eslint config, remove old lint configs
* Config for server and tests are different
* Tweaked rules to suit us
* Fix linting in codebase - lots of indent changes.
* Fix a real broken test
2017-11-01 13:44:54 +00:00

22 lines
615 B
JavaScript

// # Facebook URL Helper
// Usage: `{{facebook_url}}` or `{{facebook_url author.facebook}}`
//
// Output a url for a twitter username
var proxy = require('./proxy'),
socialUrls = proxy.socialUrls,
findKey = proxy.utils.findKey;
// We use the name facebook_url to match the helper for consistency:
module.exports = function facebook_url(username, options) { // eslint-disable-line camelcase
if (!options) {
options = username;
username = findKey('facebook', this, options.data.blog);
}
if (username) {
return socialUrls.facebookUrl(username);
}
return null;
};