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.119 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.118 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.117 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.116 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.115 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.114 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.113 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.111 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.110 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.109 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.108 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.107 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.106 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.105 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.104 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.103 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.102 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.101 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.100 tracks/ecmascript/exercises/strain/example.js
trackler-2.2.1.99 tracks/ecmascript/exercises/strain/example.js