UNPKG

orange-orm

Version:

Object Relational Mapper

8 lines (6 loc) 213 B
const getSessionContext = require('./getSessionContext'); function setSessionSingleton(context, name, value) { const rdb = getSessionContext(context); rdb[name] = value; } module.exports = setSessionSingleton;