@ark-ui/react
Advanced tools
Comparing version 0.0.0-rc-20221114214704 to 0.0.0-rc-20221115142453
@@ -791,5 +791,4 @@ // src/accordion/accordion.tsx | ||
// src/run-if-fn.ts | ||
function runIfFn(valueOrFn, ...args) { | ||
return typeof valueOrFn === "function" ? valueOrFn(...args) : valueOrFn; | ||
} | ||
var isFunction = (value) => typeof value === "function"; | ||
var runIfFn = (valueOrFn, ...args) => isFunction(valueOrFn) ? valueOrFn(...args) : valueOrFn; | ||
@@ -796,0 +795,0 @@ // src/pagination/pagination-context.ts |
{ | ||
"name": "@ark-ui/react", | ||
"version": "0.0.0-rc-20221114214704", | ||
"version": "0.0.0-rc-20221115142453", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "keywords": [], |
Sorry, the diff of this file is too big to display
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
177123
4642