UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

9 lines 263 B
export const isToken = (value, tokens) => { const tokenValues = Object.entries(tokens); for (let i = 0; i < tokenValues.length; i++) { const [tokenKey, tokenValue] = tokenValues[i]; if (value.includes(tokenValue)) { return tokenKey; } } };