1'use strict' 2 3module.exports = function spin (spinstr, spun) { 4 return spinstr[spun % spinstr.length] 5} 6