814f2b21883f85cb178d7ade6a25fb3759027cbce67aa8ffd3e537bdb394f55b155a3050830e4f02bbbd8e187532d0230c0dbfd0640dd0ca4632b4720804be 179 B

12345678
  1. "use strict";
  2. exports.__esModule = true;
  3. exports.default = getEvenValues;
  4. function getEvenValues(list, index) {
  5. return index % 2 === 0;
  6. }
  7. module.exports = exports["default"];