Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

falcor-json-graph

Package Overview
Dependencies
Maintainers
3
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

falcor-json-graph - npm Package Compare versions

Comparing version 2.1.0 to 2.1.1

10

CHANGELOG.md

@@ -5,2 +5,12 @@ # Change Log

<a name="2.1.1"></a>
## [2.1.1](https://github.com/Netflix/falcor-json-graph/compare/v2.1.0...v2.1.1) (2017-12-21)
### Bug Fixes
* JsonMap and JsonGraph types should not assume values are present. ([2bade2d](https://github.com/Netflix/falcor-json-graph/commit/2bade2d))
<a name="2.1.0"></a>

@@ -7,0 +17,0 @@ # [2.1.0](https://github.com/Netflix/falcor-json-graph/compare/v2.0.0...v2.1.0) (2017-12-12)

4

lib/index.js

@@ -5,3 +5,3 @@ //

@@ -16,3 +16,3 @@

@@ -19,0 +19,0 @@

{
"name": "falcor-json-graph",
"version": "2.1.0",
"version": "2.1.1",
"description": "A set of factory functions for creating JSON Graph values.",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -5,3 +5,3 @@ // @flow

export type JsonValue = Primitive | JsonMap | JsonValue[];
export type JsonMap = { [key: string]: JsonValue };
export type JsonMap = { [key: string]: JsonValue | void };

@@ -16,3 +16,3 @@ export type Key = Primitive;

export type JsonGraph = { [key: string]: JsonGraphNode, $type?: empty };
export type JsonGraph = { [key: string]: JsonGraphNode | void, $type?: empty };
export type JsonGraphNode = JsonGraph | JsonGraphLeaf;

@@ -19,0 +19,0 @@ export type JsonGraphLeaf =

Sorry, the diff of this file is not supported yet

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