var RotateMatrix = require('./RotateMatrix'); var RotateRight = function (matrix){ return RotateMatrix(matrix, 90); } ; module.exports = RotateRight;