LandRover/YowJS

View on GitHub
src/consts/states.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Possible states of the connection, passed via emit when state changes.
 */
module.exports = {
    ONLINE: Symbol(),
    OFFLINE: Symbol(),
    AUTH_ERROR: Symbol()
};