Sha256: d1c1244822755943690e885fdc20c5b681cec4010458e4e6bc3c61364cc7a248

Contents?: true

Size: 636 Bytes

Versions: 24

Compression:

Stored size: 636 Bytes

Contents

'use strict';
const cmp = require('semver/functions/cmp');
const semver = require('semver/functions/coerce');

const has = Function.call.bind({}.hasOwnProperty);

function compare(a, operator, b) {
  return cmp(semver(a), operator, semver(b));
}

function intersection(list, order) {
  const set = list instanceof Set ? list : new Set(list);
  return order.filter(name => set.has(name));
}

function sortObjectByKey(object, fn) {
  return Object.keys(object).sort(fn).reduce((memo, key) => {
    memo[key] = object[key];
    return memo;
  }, {});
}

module.exports = {
  compare,
  has,
  intersection,
  semver,
  sortObjectByKey,
};

Version data entries

24 entries across 23 versions & 7 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/core-js-compat/helpers.js
disco_app-0.16.1 test/dummy/node_modules/core-js-compat/helpers.js
disco_app-0.15.2 test/dummy/node_modules/core-js-compat/helpers.js
disco_app-0.18.4 test/dummy/node_modules/core-js-compat/helpers.js
disco_app-0.18.1 test/dummy/node_modules/core-js-compat/helpers.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/core-js-compat/helpers.js
disco_app-0.14.0 test/dummy/node_modules/core-js-compat/helpers.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/core-js-compat/helpers.js
tang-0.2.1 spec/tang_app/node_modules/core-js-compat/helpers.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/core-js-compat/helpers.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/core-js-compat/helpers.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/core-js-compat/helpers.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/core-js-compat/helpers.js
tang-0.2.0 spec/tang_app/node_modules/core-js-compat/helpers.js
tang-0.1.0 spec/tang_app/node_modules/core-js-compat/helpers.js
tang-0.0.9 spec/tang_app/node_modules/core-js-compat/helpers.js
enju_library-0.3.8 spec/dummy/node_modules/core-js-compat/helpers.js
condenser-0.3 lib/condenser/processors/node_modules/core-js-compat/helpers.js
condenser-0.2 lib/condenser/processors/node_modules/core-js-compat/helpers.js
condenser-0.1 lib/condenser/processors/node_modules/core-js-compat/helpers.js