@enact/core
Advanced tools
Comparing version 1.7.0 to 1.8.0
@@ -5,2 +5,6 @@ # Change Log | ||
## [1.8.0] - 2017-09-07 | ||
No significant changes. | ||
## [1.7.0] - 2017-08-23 | ||
@@ -7,0 +11,0 @@ |
{ | ||
"name": "@enact/core", | ||
"version": "1.7.0", | ||
"version": "1.8.0", | ||
"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", |
@@ -141,2 +141,17 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; | ||
export { cap, childrenEquals, coerceFunction, coerceArray, Job, isRenderable, extractAriaProps }; | ||
/** | ||
* Gets current timestamp of either `window.performance.now` or `Date.now` | ||
* | ||
* @method | ||
* @memberof core/util | ||
* @returns {Number} | ||
*/ | ||
var perfNow = function perfNow() { | ||
if ((typeof window === 'undefined' ? 'undefined' : _typeof(window)) === 'object') { | ||
return window.performance.now(); | ||
} else { | ||
return Date.now(); | ||
} | ||
}; | ||
export { cap, childrenEquals, coerceFunction, coerceArray, Job, isRenderable, extractAriaProps, perfNow }; |
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
117530
57
3237
6