evenValues.js 179 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 "use strict"; exports.__esModule = true; exports.default = getEvenValues; function getEvenValues(list, index) { return index % 2 === 0; } module.exports = exports["default"];