1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/lib/extract-user.js
2017-06-28 10:17:14 +02:00

7 lines
129 B
JavaScript

'use strict';
function extractUsername(req) {
return req.cookies.username || 'unknown';
}
module.exports = extractUsername;