We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8730a31 commit aff94b0Copy full SHA for aff94b0
lib/types.js
@@ -28,12 +28,6 @@ binaryParsers.init(function(oid, converter) {
28
typeParsers.binary[oid] = converter;
29
});
30
31
-var parseByteA = function(val) {
32
- return new Buffer(val.replace(/\\([0-7]{3})/g, function (full_match, code) {
33
- return String.fromCharCode(parseInt(code, 8));
34
- }).replace(/\\\\/g, "\\"), "binary");
35
-}
36
-
37
module.exports = {
38
getTypeParser: getTypeParser,
39
}
0 commit comments