@enact/core
Advanced tools
Comparing version 2.0.0-beta.6 to 2.0.0-beta.7
@@ -5,2 +5,6 @@ # Change Log | ||
## [2.0.0-beta.7] - 2018-06-11 | ||
No significant changes. | ||
## [2.0.0-beta.6] - 2018-06-04 | ||
@@ -7,0 +11,0 @@ |
@@ -21,3 +21,3 @@ "use strict"; | ||
* function returns `true`, `handle()` will continue processing the event by calling the next input | ||
* function in the chain. If it returns `false` (or any falsey value like `null` or `undefined`), | ||
* function in the chain. If it returns `false` (or any falsy value like `null` or `undefined`), | ||
* the event handling chain stops at that input function. | ||
@@ -145,3 +145,3 @@ * | ||
* Allows generating event handlers by chaining input functions to filter or short-circuit the | ||
* handling flow. Any input function that returns a falsey value will stop the chain. | ||
* handling flow. Any input function that returns a falsy value will stop the chain. | ||
* | ||
@@ -148,0 +148,0 @@ * The returned handler function has a `finally()` member that accepts a function and returns a new |
@@ -307,3 +307,3 @@ "use strict"; | ||
}); | ||
it('should return false when the passed condition branch returns a falsey value', function () { | ||
it('should return false when the passed condition branch returns a falsy value', function () { | ||
var callback = (0, _handle.oneOf)([returnsTrue, function () { | ||
@@ -310,0 +310,0 @@ return null; |
@@ -67,3 +67,3 @@ "use strict"; | ||
}); | ||
it('should not add entry with a falsey name', function () { | ||
it('should not add entry with a falsy name', function () { | ||
keymap.add('', 13); | ||
@@ -70,0 +70,0 @@ var expected = false; |
{ | ||
"name": "@enact/core", | ||
"version": "2.0.0-beta.6", | ||
"version": "2.0.0-beta.7", | ||
"description": "Enact is an open source JavaScript framework containing everything you need to create a fast, scalable mobile or web application.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
158228