Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@types/jsonabc

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/jsonabc - npm Package Compare versions

Comparing version
2.3.1
to
2.3.2
+0
-6
jsonabc/index.d.ts

@@ -1,7 +0,1 @@

// Type definitions for jsonabc 2.3
// Project: http://novicelab.org/jsonabc
// Definitions by: Florian Keller <https://github.com/ffflorian>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
/**

@@ -8,0 +2,0 @@ * Sort the JSON (clean, parse, sort, stringify).

+1
-1
MIT License
Copyright (c) Microsoft Corporation. All rights reserved.
Copyright (c) Microsoft Corporation.

@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy

{
"name": "@types/jsonabc",
"version": "2.3.1",
"version": "2.3.2",
"description": "TypeScript definitions for jsonabc",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsonabc",
"license": "MIT",

@@ -9,8 +10,8 @@ "contributors": [

"name": "Florian Keller",
"url": "https://github.com/ffflorian",
"githubUsername": "ffflorian"
"githubUsername": "ffflorian",
"url": "https://github.com/ffflorian"
}
],
"main": "",
"types": "index",
"types": "index.d.ts",
"repository": {

@@ -23,4 +24,4 @@ "type": "git",

"dependencies": {},
"typesPublisherContentHash": "16b81994785c06f59c0dde6bfb1889da61ff78f5963ca32af5ea1fd700495d4f",
"typeScriptVersion": "2.2"
"typesPublisherContentHash": "6a71e7f88720d498ad37834a834df791cfe1a3b72c643b1ebe9ec64177eea17c",
"typeScriptVersion": "4.5"
}

@@ -5,13 +5,30 @@ # Installation

# Summary
This package contains type definitions for jsonabc ( http://novicelab.org/jsonabc ).
This package contains type definitions for jsonabc (http://novicelab.org/jsonabc).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsonabc
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsonabc.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsonabc/index.d.ts)
````ts
/**
* Sort the JSON (clean, parse, sort, stringify).
* @param noArray Sort or don't sort arrays
*/
export function sort(inputStr: string, noArray?: boolean): string;
Additional Details
* Last updated: Mon, 29 Apr 2019 17:44:04 GMT
/**
* Sort the JSON (clean, parse, sort, stringify).
* @param noArray Sort or don't sort arrays
*/
export function sortObj<T extends object>(input: T, noArray?: boolean): T;
/** Remove trailing commas */
export function cleanJSON(input: string): string;
````
### Additional Details
* Last updated: Wed, 18 Oct 2023 05:47:07 GMT
* Dependencies: none
* Global values: none
# Credits
These definitions were written by Florian Keller <https://github.com/ffflorian>.
These definitions were written by [Florian Keller](https://github.com/ffflorian).