UNPKG

@eluvio/elv-js-helpers

Version:

A collection of Javascript helper functions used by several Eluvio libraries.

10 lines (7 loc) 279 B
'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 even const roundEven = roundToMultiple(2) module.exports = roundEven