UNPKG

identifi-lib

Version:

Basic tools for reading and writing Identifi messages and identities.

19 lines (17 loc) 433 B
/*eslint no-useless-escape: "off", camelcase: "off" */ import Message from './message'; import Identity from './identity'; import Attribute from './attribute'; import util from './util'; import Index from './index_'; import Key from './key'; import { version } from '../package.json'; export default { VERSION: version, Message: Message, Identity: Identity, Attribute: Attribute, Index: Index, Key: Key, util: util };