1
0
mirror of https://github.com/therootcompany/asn1.js.git synced 2025-03-16 05:20:39 +00:00

12 lines
264 B
JavaScript

'use strict';
var ASN1 = module.exports;
var packer = require('./packer.js');
var parser = require('./parser.js');
Object.keys(parser).forEach(function(key) {
ASN1[key] = parser[key];
});
Object.keys(packer).forEach(function(key) {
ASN1[key] = packer[key];
});