Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
muryshev
/
generic-chatbot-admin
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
generic-chatbot-admin
/
src
/
shared
/
utils
/
getTimezoneOffset.ts
muryshev
init
79278ec
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
141 Bytes
export
const
getTimezoneOffsetInHours
= (
) => {
const
offsetInMinutes =
new
Date
().
getTimezoneOffset
();
return
-offsetInMinutes /
60
;
};