falcor-json-graph
Advanced tools
Comparing version 1.1.1 to 1.1.5
{ | ||
"name": "falcor-json-graph", | ||
"version": "1.1.1", | ||
"version": "1.1.5", | ||
"description": "A set of factory functions for creating JSON Graph values.", | ||
@@ -13,7 +13,2 @@ "main": "src/index.js", | ||
}, | ||
"keywords": [ | ||
"falcor", | ||
"JSON", | ||
"Graph" | ||
], | ||
"author": "Jafar Husain <jhusain@gmail.com>", | ||
@@ -24,2 +19,8 @@ "license": "Apache 2.0", | ||
}, | ||
"keywords": [ | ||
"falcorjs", | ||
"Observable", | ||
"JSON", | ||
"JSON Graph" | ||
], | ||
"homepage": "https://github.com/Netflix/falcor-json-graph", | ||
@@ -26,0 +27,0 @@ "dependencies": { |
# falcor-json-graph | ||
A set of factory functions for creating JSON Graph values | ||
A set of factory functions for creating JSON Graph values. | ||
```JavaScript | ||
var jsonGraph = require('falcor-json-graph'); | ||
var atom = jsonGraph.atom("a string wrapped in an atom"); // creates { $type: "atom", value: "a string wrapped in an atom" } | ||
var ref = jsonGraph.ref("todos[0].name"); // creates { $type: "ref", value: ["todos", 0, "name"] } | ||
var error = jsonGraph.error("something bad happened."); // creates { $type: "error", value: "something bad happened." } | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13649
13