/
ai_sampletext
/
DiplomWork
Обзор
Документация
Войти
/
ai_sampletext
/
DiplomWork
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/passport/lib/framework/connect.js
22 строки
504 B
boolyshareyo
Initial commit
08 июн 2026, 16:00
08 июн 2026, 16:00
6216a29
Код
Авторство
О чём код?
/** * Module dependencies. */ var initialize = require('../middleware/initialize') , authenticate = require('../middleware/authenticate'); /** * Framework support for Connect/Express. * * This module provides support for using Passport with Express. It exposes * middleware that conform to the `fn(req, res, next)` signature. * * @return {Object} * @api protected */ exports = module.exports = function() { return { initialize: initialize, authenticate: authenticate }; };