'use strict'; module.exports = function () { const hook = { /** * Initialize the hook */ initialize: function (cb) { cb(); } }; return hook; };