Socket
Socket
Sign inDemoInstall

@types/buffer-json

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/buffer-json

TypeScript definitions for buffer-json


Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Installation

npm install --save @types/buffer-json

Summary

This package contains type definitions for buffer-json (https://github.com/jprichardson/buffer-json).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/buffer-json.

index.d.ts

/**
 * Converts a JavaScript object or value to a JSON string.
 * @param value The value to convert to a JSON string.
 * @param space A String or Number object that's used to insert white space into the output JSON string for readability purposes.
 * @return A JSON string representing the given value.
 */
export function stringify(value: any, space?: string | number): string;

/**
 * Parses a JSON string, constructing the JavaScript value or object described by the string.
 * An optional reviver function can be provided to perform a transformation on the resulting object before it is returned.
 * @param text The string to parse as JSON.
 * @return The `Object` corresponding to the given JSON text.
 */
export function parse(text: string): any;

/**
 * A function that transform the value computed by parsing before being returned.
 * @param key
 * @param value
 */
export function replacer(key: string, value: string): any;

/**
 * A function that alters the behavior of the stringification process.
 * @param key
 * @param value
 */
export function reviver(key: string, value: any): any;

Additional Details

  • Last updated: Mon, 06 Nov 2023 22:41:05 GMT
  • Dependencies: none

Credits

These definitions were written by .

FAQs

Package last updated on 07 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc