File size: 105 Bytes
1a3d6ba |
1 2 3 4 5 6 |
'use strict'
module.exports = function spin (spinstr, spun) {
return spinstr[spun % spinstr.length]
}
|
1a3d6ba |
1 2 3 4 5 6 |
'use strict'
module.exports = function spin (spinstr, spun) {
return spinstr[spun % spinstr.length]
}
|