@fnlb-project/stanza
Version:
Modern XMPP in the browser, with a JSON API
19 lines (18 loc) • 655 B
JavaScript
// ====================================================================
// XEP-0202: Entity Time
// --------------------------------------------------------------------
// Source: https://xmpp.org/extensions/xep-0202.html
// Version: 2.0 (2009-09-15)
// ====================================================================
import { childDate, childTimezoneOffset } from '../jxt';
import { NS_TIME } from '../Namespaces';
const Protocol = {
element: 'time',
fields: {
tzo: childTimezoneOffset(null, 'tzo'),
utc: childDate(null, 'utc')
},
namespace: NS_TIME,
path: 'iq.time'
};
export default Protocol;