CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
1# strip-json-comments [![Build Status](https://travis-ci.com/sindresorhus/strip-json-comments.svg?branch=master)](https://travis-ci.com/github/sindresorhus/strip-json-comments)2 3> Strip comments from JSON. Lets you use comments in your JSON files!4 5This is now possible:6 7```js8{9	// Rainbows10	"unicorn": /* ❤ */ "cake"11}12```13 14It 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.15 16Also available as a [Gulp](https://github.com/sindresorhus/gulp-strip-json-comments)/[Grunt](https://github.com/sindresorhus/grunt-strip-json-comments)/[Broccoli](https://github.com/sindresorhus/broccoli-strip-json-comments) plugin.17 18## Install19 20```21$ npm install strip-json-comments22```23 24## Usage25 26```js27const json = `{28	// Rainbows29	"unicorn": /* ❤ */ "cake"30}`;31 32JSON.parse(stripJsonComments(json));33//=> {unicorn: 'cake'}34```35 36## API37 38### stripJsonComments(jsonString, options?)39 40#### jsonString41 42Type: `string`43 44Accepts a string with JSON and returns a string without comments.45 46#### options47 48Type: `object`49 50##### whitespace51 52Type: `boolean`\53Default: `true`54 55Replace comments with whitespace instead of stripping them entirely.56 57## Benchmark58 59```60$ npm run bench61```62 63## Related64 65- [strip-json-comments-cli](https://github.com/sindresorhus/strip-json-comments-cli) - CLI for this module66- [strip-css-comments](https://github.com/sindresorhus/strip-css-comments) - Strip comments from CSS67 68---69 70<div align="center">71	<b>72		<a href="https://tidelift.com/subscription/pkg/npm-strip-json-comments?utm_source=npm-strip-json-comments&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>73	</b>74	<br>75	<sub>76		Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.77	</sub>78</div>79 
basant307/AI_Governance_Project · CoolFace