Skip to content

Commit a4753fe

Browse files
committed
remove extra parser
1 parent f5d348c commit a4753fe

File tree

7 files changed

+0
-1857
lines changed

7 files changed

+0
-1857
lines changed

benchmark/perfTest3.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ var suite = new Benchmark.Suite("XML Parser benchmark");
33

44
var parser = require("../src/parser");
55
var xml2js = require("xml2js");
6-
var parser2 = require("../src/parserV2");
7-
var parser3 = require("../src/parserV3");
86

97
var fs = require("fs");
108
var path = require("path");
@@ -22,12 +20,6 @@ suite
2220
.add('xml to json V1', function() {
2321
parser.parse(xmlData);
2422
})
25-
.add('xml to json V2 ', function() {
26-
parser2.parse(xmlData);
27-
})
28-
.add('xml to json V3 ', function() {
29-
parser3.parse(xmlData);
30-
})
3123
.add('xml2js ', function() {
3224
xml2js.parseString(xmlData,function(err,result){
3325
if (err) throw err;

spec/attrv2_spec.js

Lines changed: 0 additions & 226 deletions
This file was deleted.

0 commit comments

Comments
 (0)