spin.js 105 B

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