Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.js « store « user_lists « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16f510bc32d27dae5dd402ba26c52ea2e67a3627 (plain)
1
2
3
4
5
6
export const parseUserIds = (userIds) => userIds.split(/\s*,\s*/g);

export const stringifyUserIds = (userIds) => userIds.join(',');

export const getErrorMessages = (error) =>
  [].concat(error?.response?.data?.message ?? error.message);