'use strict'const roundToMultiple = require('./roundToMultiple')
// // roundEven :: Number -> Number// // Rounds a value to the nearest even number// // Used to ensure that calculated video dimensions are evenconst roundEven = roundToMultiple(2)
module.exports = roundEven