rename tests to conform

This commit is contained in:
JasonS
2015-04-21 09:28:01 -07:00
parent 99cdf5e986
commit c5373eefa6
2 changed files with 0 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
/// <reference path="json5.d.ts" />
import JSON5 = require('json5');
var obj = JSON5.parse("{ key:'val', 'key2':[0,1,2,] } //comment ");
var str = JSON5.stringify(obj, null, "\t");
console.log(str);