Ghost/ghost/config-url-helpers/index.js

8 lines
230 B
JavaScript
Raw Normal View History

const configUrlHelpers = require('./lib/config-url-helpers');
module.exports.bindAll = (nconf) => {
Object.keys(configUrlHelpers).forEach((helper) => {
nconf[helper] = configUrlHelpers[helper].bind(nconf);
});
};