UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

13 lines 258 B
export var isZero = function isZero(value) { if (typeof value === 'string') { if (value === '0px' || value === '0') { return true; } } if (typeof value === 'number') { if (value === 0) { return true; } } return false; };