6 lines
105 B
JavaScript
Raw Permalink Normal View History

2023-07-24 11:13:08 +08:00
'use strict'
module.exports = function spin (spinstr, spun) {
return spinstr[spun % spinstr.length]
}