mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
261 B
TypeScript
10 lines
261 B
TypeScript
import * as myJsonAbc from 'jsonabc';
|
|
|
|
myJsonAbc.sortObj({ c: 0, b: 1, a: 0 });
|
|
myJsonAbc.sortObj({ c: 0, b: 1, a: 0 }, false);
|
|
|
|
myJsonAbc.sort('{ c: 0, b: 1, a: 0 }');
|
|
myJsonAbc.sort('{ c: 0, b: 1, a: 0 }', true);
|
|
|
|
myJsonAbc.cleanJSON('{ c: 0, b: 1, a: 0 }');
|