exports.loadCurrentProfile = function()

in lib/profile.js [32:38]


exports.loadCurrentProfile = function (config) {
  const profile = config.profiles.find((d) => {
    return d.name === config.current;
  });

  return profile;
};