Comparing version 0.1.8 to 0.1.9
{ | ||
"name": "redux-nl", | ||
"version": "0.1.8", | ||
"version": "0.1.9", | ||
"description": "A GraphQL inspired rest client side network layer", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -10,2 +10,3 @@ /** | ||
import _mapKeys from "lodash.mapkeys"; | ||
import _omit from "lodash.omit"; | ||
/* Local Modules */ | ||
@@ -27,3 +28,3 @@ import { AbstractNetworkSaga } from "./abstract-network-saga"; | ||
); | ||
const metaInSnakeCase = _.omit(_mapKeys(meta, (_, key) => _snakeCase(key)), ["headers"]); | ||
const metaInSnakeCase = _omit(_mapKeys(meta, (_, key) => _snakeCase(key)), ["headers"]); | ||
// Extracts parameters from brackets e.g. "/user/orders/{id}" -> id (only supports a single query parameter) | ||
@@ -30,0 +31,0 @@ const extractedPathParameter = path |
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
32618
487