adminjs
Version:
Admin panel for apps written in node.js
7 lines (4 loc) • 352 B
text/typescript
/* eslint-disable max-len */
export const getDataCss = (...args: (string | number)[]) => args.join('-')
export const getResourceElementCss = (resourceId: string, suffix: string) => getDataCss(resourceId, suffix)
export const getActionElementCss = (resourceId: string, actionName: string, suffix: string) => getDataCss(resourceId, actionName, suffix)