8 lines
142 B
JavaScript

exports.templateData = {
userInfo: function(done) {
setTimeout(function() {
done(null, {});
}, 600);
}
};