mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-10-26 21:51:25 +03:00
* chore(deps): update dependency prettier to v3 * Format --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
6 lines
155 B
TypeScript
6 lines
155 B
TypeScript
export const prefixSelectors = (
|
|
tag: string,
|
|
selectors: string[],
|
|
style: string,
|
|
) => selectors.map((selector) => `${tag}::-${selector} ${style}`);
|