@@ -58,11 +58,6 @@ const obj = {
5858
5959const multiArray = [ ]
6060
61- const JSTR = require ( 'json-strify' )
62- const JSTRStringify = JSTR ( schemaCJS )
63- const JSTRArray = JSTR ( arraySchemaCJS )
64- const JSTRInstance = JSTR ( )
65-
6661const CJS = require ( 'compile-json-stringify' )
6762const CJSStringify = CJS ( schemaCJS )
6863const CJSStringifyArray = CJS ( arraySchemaCJS )
@@ -90,9 +85,6 @@ for (i = 0; i < 1000; i++) {
9085suite . add ( 'FJS creation' , function ( ) {
9186 FJS ( schema )
9287} )
93- suite . add ( 'JSTR creation' , function ( ) {
94- JSTR ( schemaCJS )
95- } )
9688suite . add ( 'CJS creation' , function ( ) {
9789 CJS ( schemaCJS )
9890} )
@@ -105,10 +97,6 @@ suite.add('fast-json-stringify array', function () {
10597 stringifyArray ( multiArray )
10698} )
10799
108- suite . add ( 'json-strify array' , function ( ) {
109- JSTRArray ( multiArray )
110- } )
111-
112100suite . add ( 'compile-json-stringify array' , function ( ) {
113101 CJSStringifyArray ( multiArray )
114102} )
@@ -121,10 +109,6 @@ suite.add('fast-json-stringify long string', function () {
121109 stringifyString ( str )
122110} )
123111
124- suite . add ( 'json-strify long string' , function ( ) {
125- JSTRInstance ( str )
126- } )
127-
128112suite . add ( 'compile-json-stringify long string' , function ( ) {
129113 CJSStringifyString ( str )
130114} )
@@ -137,10 +121,6 @@ suite.add('fast-json-stringify short string', function () {
137121 stringifyString ( 'hello world' )
138122} )
139123
140- suite . add ( 'json-strify short string' , function ( ) {
141- JSTRInstance ( 'hello world' )
142- } )
143-
144124suite . add ( 'compile-json-stringify short string' , function ( ) {
145125 CJSStringifyString ( 'hello world' )
146126} )
@@ -153,10 +133,6 @@ suite.add('fast-json-stringify obj', function () {
153133 stringify ( obj )
154134} )
155135
156- suite . add ( 'json-strify obj' , function ( ) {
157- JSTRStringify ( obj )
158- } )
159-
160136suite . add ( 'compile-json-stringify obj' , function ( ) {
161137 CJSStringify ( obj )
162138} )
0 commit comments