@synhaptein/falcor-http-datasource
Advanced tools
Comparing version 0.1.4 to 0.1.5
{ | ||
"name": "@synhaptein/falcor-http-datasource", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"description": "This package contains falcor components for use in browsers.", | ||
@@ -5,0 +5,0 @@ "main": "src/XMLHttpSource.js", |
@@ -62,3 +62,8 @@ 'use strict'; | ||
if (hasOwnProp.call(options, prop)) { | ||
config[prop] = options[prop]; | ||
if (typeof options[prop] === "function") { | ||
config[prop] = options[prop](); | ||
} | ||
else { | ||
config[prop] = options[prop]; | ||
} | ||
} | ||
@@ -65,0 +70,0 @@ } |
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
44772
706