cloudcmd/client/modules/operation/get-next-current-name.js
2023-07-09 12:43:24 +03:00

18 lines
457 B
JavaScript

'use strict';
const currify = require('currify');
const not = currify((array, value) => !array.includes(value));
const notOneOf = currify((a, b) => a.filter(not(b)));
module.exports = (currentName, names, removedNames) => {
const i = names.indexOf(currentName);
const nextNames = notOneOf(names, removedNames);
const {length} = nextNames;
if (nextNames[i])
return nextNames[i];
return nextNames[length - 1];
};