FLUJOS/BACK_BACK/node_modules/asn1.js/lib/asn1/constants/index.js
2025-11-07 00:06:12 +01:00

19 lines
347 B
JavaScript
Executable file

var constants = exports;
// Helper
constants._reverse = function reverse(map) {
var res = {};
Object.keys(map).forEach(function(key) {
// Convert key to integer if it is stringified
if ((key | 0) == key)
key = key | 0;
var value = map[key];
res[value] = key;
});
return res;
};
constants.der = require('./der');