From 1388227fe411ac3e381f6deaef891dbb5e720996 Mon Sep 17 00:00:00 2001 From: Yarmo Mackenbach Date: Sun, 25 Oct 2020 00:41:06 +0200 Subject: [PATCH] Add exports --- src/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/index.js b/src/index.js index 35ba4e1..16b4976 100644 --- a/src/index.js +++ b/src/index.js @@ -18,6 +18,7 @@ const bent = require('bent') const req = bent('GET') const serviceproviders = require('./serviceproviders') const claimVerification = require('./claimVerification') +const utils = require('./utils') const verify = async (uri, fingerprint, opts) => { if (!opts) { opts = {} } @@ -69,3 +70,5 @@ const verify = async (uri, fingerprint, opts) => { exports.verify = verify exports.serviceproviders = serviceproviders +exports.claimVerification = claimVerification +exports.utils = utils