@fnlb-project/stanza
Version:
Modern XMPP in the browser, with a JSON API
12 lines (11 loc) • 534 B
JavaScript
// ====================================================================
// XEP-0319: Last User Interaction in Presence
// --------------------------------------------------------------------
// Source: https://xmpp.org/extensions/xep-0313.html
// Version: 1.0.2 (2017-07-17)
// ====================================================================
import { childDate, extendPresence } from '../jxt';
import { NS_IDLE_1 } from '../Namespaces';
export default extendPresence({
idleSince: childDate(NS_IDLE_1, 'since')
});