UNPKG

node-weblyse

Version:

Analyse your website(s) with multiple tools.

19 lines (17 loc) 298 B
/** * @typedef {Object} SsllabsConfig * @property {int} [maxAge=24] */ /** * @param {boolean|SsllabsConfig} config * @returns {SsllabsConfig} */ module.exports = function (config) { return Object.assign( {}, { maxAge: 24, }, config, ); };