UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

8 lines 347 B
import { isCalc } from './is-calc'; var percentageOrEmOrAuto = /(%$)|(\d+em$)|(auto$)/; export var removePixelSuffix = function removePixelSuffix(value) { if (typeof value === 'string' && (percentageOrEmOrAuto.test(value) || isCalc(value))) { return value; } return Number(typeof value === 'string' ? value.replace('px', '') : value); };