mirror of
https://github.com/Unleash/unleash.git
synced 2025-03-04 00:18:40 +01:00
6 lines
128 B
JavaScript
6 lines
128 B
JavaScript
'use strict';
|
|
function extractUsername(req) {
|
|
return req.cookies.username || 'unknown';
|
|
}
|
|
module.exports = extractUsername;
|