@@ -58,11 +58,6 @@ const obj = {
58
58
59
59
const multiArray = [ ]
60
60
61
- const JSTR = require ( 'json-strify' )
62
- const JSTRStringify = JSTR ( schemaCJS )
63
- const JSTRArray = JSTR ( arraySchemaCJS )
64
- const JSTRInstance = JSTR ( )
65
-
66
61
const CJS = require ( 'compile-json-stringify' )
67
62
const CJSStringify = CJS ( schemaCJS )
68
63
const CJSStringifyArray = CJS ( arraySchemaCJS )
@@ -90,9 +85,6 @@ for (i = 0; i < 1000; i++) {
90
85
suite . add ( 'FJS creation' , function ( ) {
91
86
FJS ( schema )
92
87
} )
93
- suite . add ( 'JSTR creation' , function ( ) {
94
- JSTR ( schemaCJS )
95
- } )
96
88
suite . add ( 'CJS creation' , function ( ) {
97
89
CJS ( schemaCJS )
98
90
} )
@@ -105,10 +97,6 @@ suite.add('fast-json-stringify array', function () {
105
97
stringifyArray ( multiArray )
106
98
} )
107
99
108
- suite . add ( 'json-strify array' , function ( ) {
109
- JSTRArray ( multiArray )
110
- } )
111
-
112
100
suite . add ( 'compile-json-stringify array' , function ( ) {
113
101
CJSStringifyArray ( multiArray )
114
102
} )
@@ -121,10 +109,6 @@ suite.add('fast-json-stringify long string', function () {
121
109
stringifyString ( str )
122
110
} )
123
111
124
- suite . add ( 'json-strify long string' , function ( ) {
125
- JSTRInstance ( str )
126
- } )
127
-
128
112
suite . add ( 'compile-json-stringify long string' , function ( ) {
129
113
CJSStringifyString ( str )
130
114
} )
@@ -137,10 +121,6 @@ suite.add('fast-json-stringify short string', function () {
137
121
stringifyString ( 'hello world' )
138
122
} )
139
123
140
- suite . add ( 'json-strify short string' , function ( ) {
141
- JSTRInstance ( 'hello world' )
142
- } )
143
-
144
124
suite . add ( 'compile-json-stringify short string' , function ( ) {
145
125
CJSStringifyString ( 'hello world' )
146
126
} )
@@ -153,10 +133,6 @@ suite.add('fast-json-stringify obj', function () {
153
133
stringify ( obj )
154
134
} )
155
135
156
- suite . add ( 'json-strify obj' , function ( ) {
157
- JSTRStringify ( obj )
158
- } )
159
-
160
136
suite . add ( 'compile-json-stringify obj' , function ( ) {
161
137
CJSStringify ( obj )
162
138
} )
0 commit comments