File: index.d.ts

package info (click to toggle)
node-strip-json-comments 4.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 896 kB
  • sloc: javascript: 201; makefile: 5
file content (34 lines) | stat: -rw-r--r-- 781 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
export interface Options {
	/**
	Replace comments with whitespace instead of stripping them entirely.

	@default true
	*/
	readonly whitespace?: boolean;
}

/**
Strip comments from JSON. Lets you use comments in your JSON files!

It will replace single-line comments `//` and multi-line comments `/**\/` with whitespace. This allows JSON error positions to remain as close as possible to the original source.

@param jsonString - Accepts a string with JSON.
@returns A JSON string without comments.

@example
```
import stripJsonComments from 'strip-json-comments';

const json = `{
	// Rainbows
	"unicorn": "cake"
}`;

JSON.parse(stripJsonComments(json));
//=> {unicorn: 'cake'}
```
*/
export default function stripJsonComments(
	jsonString: string,
	options?: Options
): string;