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.180 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.179 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.178 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.177 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.176 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.175 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.174 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.173 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.172 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.171 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.170 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.169 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.167 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.166 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.165 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.164 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.163 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.162 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.161 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.160 tracks/ecmascript/exercises/strain/example.js