import * as unistyles from'../web/services'import { error, isServer } from'../web/utils'exportconstresetServerUnistyles = () => {
if (!isServer()) {
throwerror('Server styles should only be reset on the server')
}
unistyles.services.registry.reset()
}