Sha256: 252f24f4f9432ac7f8f6355fd4c0cfc00ff7680fc7a1de5daa6dc4d686918f0e

Contents?: true

Size: 427 Bytes

Versions: 185

Compression:

Stored size: 427 Bytes

Contents

const Strain = {
  strain: (array, filter, keepMatches) => {
    const results = [];
    for (let i = 0; i < array.length; i++) {
      const item = array[i];
      if (filter(item) === keepMatches) {
        results.push(item);
      }
    }
    return results;
  },

  keep: (array, filter) => Strain.strain(array, filter, true),
  discard: (array, filter) => Strain.strain(array, filter, false),

};

export default Strain;

Version data entries

185 entries across 185 versions & 1 rubygems

Version Path
trackler-2.2.1.139 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.138 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.137 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.136 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.135 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.134 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.133 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.132 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.131 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.130 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.129 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.128 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.127 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.126 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.125 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.124 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.123 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.122 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.121 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.120 tracks/ecmascript/exercises/strain/example.js