UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

6 lines 297 B
/** * Takes a template literal and returns [key, value] array of the css properties */ export const makeTemplateLiteralIntoEntries = templateString => { return templateString.replace(/\n/g, '').split(/;|{|}/).filter(el => !el.match(/\@/)).map(el => el.trim().split(':').map(e => e.trim())); };