Login/logout/auth, fan settling, period selection, log data, color themes, automatic logout + user logout if window is closed, alarm limits (colors) to monitor fields
6 lines
105 B
JavaScript
6 lines
105 B
JavaScript
'use strict'
|
|
|
|
module.exports = function spin (spinstr, spun) {
|
|
return spinstr[spun % spinstr.length]
|
|
}
|