From fa640d7b77905372fad17bc0e8b0ca7ae1e0260c Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Wed, 21 Nov 2018 01:23:37 -0700 Subject: [PATCH] export the stuff, duh --- lib/uasn1.js | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/uasn1.js b/lib/uasn1.js index cbfc2ed..7482d1d 100644 --- a/lib/uasn1.js +++ b/lib/uasn1.js @@ -65,3 +65,5 @@ ASN1.numToHex = function (d) { } return d; }; + +module.exports = ASN1; diff --git a/package.json b/package.json index fe554f5..d5235fc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "uasn1", - "version": "0.7.0", + "version": "0.7.1", "description": "An insanely minimal ASN.1 builder for X.509 common schemas, specifically SEC1/X9.62 PKCS#8, SPKI/PKIX, PKCS#1 and CSR.", "homepage": "https://git.coolaj86.com/coolaj86/uasn1.js", "main": "index.js",