UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

13 lines (12 loc) 295 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getCssMapKey = getCssMapKey; /** * Maps a padding token to a cssMap key name. * e.g. 'space.050' → 'space050' */ function getCssMapKey(paddingToken) { return paddingToken.replace('space.', 'space'); }