UNPKG

ember-simple-auth-auth0

Version:
9 lines (7 loc) 268 B
import { assign } from '@ember/polyfills'; import now from '../utils/now'; export default function createSessionDataObject(profile, tokenInfo) { const sessionData = { issuedAt: now() }; assign(sessionData, tokenInfo, { profile }); return sessionData; }