Comparing version 0.20.12 to 0.21.0
{ | ||
"name": "cerebral", | ||
"version": "0.20.12", | ||
"version": "0.21.0", | ||
"description": "A state controller with its own debugger", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -8,12 +8,10 @@ var utils = require('./utils.js'); | ||
var getDetail = function () { | ||
return { | ||
props: { | ||
signals: JSON.parse(JSON.stringify(signalStore.getSignals())), | ||
willKeepState: signalStore.willKeepState(), | ||
currentSignalIndex: signalStore.getCurrentIndex(), | ||
isExecutingAsync: signalStore.isExecutingAsync(), | ||
isRemembering: signalStore.isRemembering(), | ||
computedPaths: controller.getComputedPaths() | ||
} | ||
}; | ||
return JSON.stringify({ | ||
signals: signalStore.getSignals(), | ||
willKeepState: signalStore.willKeepState(), | ||
currentSignalIndex: signalStore.getCurrentIndex(), | ||
isExecutingAsync: signalStore.isExecutingAsync(), | ||
isRemembering: signalStore.isRemembering(), | ||
computedPaths: controller.getComputedPaths() | ||
}); | ||
}; | ||
@@ -20,0 +18,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
2384429
28080