(currentValue, values)
| 14230 | return arr[index + 1] |
| 14231 | } |
| 14232 | static toggle(currentValue, values) { |
| 14233 | const index = values.indexOf(currentValue) |
| 14234 | return index === -1 || index + 1 === values.length ? values[0] : values[index + 1] |
| 14235 | } |
| 14236 | static getClassNameFromFilePath(filepath) { |
| 14237 | return this.removeFileExtension(this.getFileName(filepath)) |
| 14238 | } |
no test coverage detected