mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 05:38:36 +00:00

PR-URL: https://github.com/nodejs/node/pull/40865 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
6 lines
105 B
JavaScript
6 lines
105 B
JavaScript
'use strict'
|
|
|
|
module.exports = function spin (spinstr, spun) {
|
|
return spinstr[spun % spinstr.length]
|
|
}
|