refactor: init cypress-cucumber-preprocessor install.

This commit is contained in:
2021-09-02 17:02:45 +02:00
parent 89ec2d42ac
commit 1aa57bbd0a
5000 changed files with 408119 additions and 231 deletions

29
node_modules/core-js-compat/helpers.js generated vendored Normal file
View File

@@ -0,0 +1,29 @@
'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,
};