UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

13 lines 246 B
export const isZero = value => { if (typeof value === 'string') { if (value === '0px' || value === '0') { return true; } } if (typeof value === 'number') { if (value === 0) { return true; } } return false; };