aplayer-react
Advanced tools
Comparing version 1.0.3 to 1.0.4
@@ -495,3 +495,8 @@ "use strict"; | ||
), | ||
() => audioElementRef.current?.currentTime, | ||
() => { | ||
if (!audioElementRef.current) { | ||
return void 0; | ||
} | ||
return Math.round(audioElementRef.current.currentTime); | ||
}, | ||
() => void 0 | ||
@@ -498,0 +503,0 @@ ); |
{ | ||
"name": "aplayer-react", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "The missing APlayer for React applications", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
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
73249
1821