From 672e667e9ce1fbbfa864e4775bdfb7b70f843a77 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Mon, 21 Jul 2014 13:53:01 -0700 Subject: [PATCH] paypro: remove x509.js --- lib/browser/PayPro.js | 2 +- lib/browser/x509.js | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) delete mode 100644 lib/browser/x509.js diff --git a/lib/browser/PayPro.js b/lib/browser/PayPro.js index c664af8..5e1a122 100644 --- a/lib/browser/PayPro.js +++ b/lib/browser/PayPro.js @@ -1,7 +1,7 @@ "use strict"; var Key = require('./Key'); -var KJUR = require('./x509'); +var KJUR = require('jsrsasign'); var assert = require('assert'); var PayPro = require('../PayPro'); var RootCerts = require('../common/RootCerts'); diff --git a/lib/browser/x509.js b/lib/browser/x509.js deleted file mode 100644 index 14c4176..0000000 --- a/lib/browser/x509.js +++ /dev/null @@ -1,2 +0,0 @@ -var jsrsasign = require('jsrsasign'); -module.exports = jsrsasign;