Sha256: 4eef4279b40e38b0e2ea5acd3ce2f9492b116ce19f2647f5756ca5584d604b80

Contents?: true

Size: 428 Bytes

Versions: 211

Compression:

Stored size: 428 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

211 entries across 211 versions & 1 rubygems

Version Path
trackler-2.0.8.31 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.30 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.29 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.28 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.27 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.26 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.24 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.23 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.22 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.21 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.20 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.19 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.18 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.17 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.16 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.15 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.14 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.13 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.12 tracks/ecmascript/exercises/strain/example.js
trackler-2.0.8.11 tracks/ecmascript/exercises/strain/example.js