UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

9 lines 177 B
const calcRegex = /(^calc)/; export const isCalc = value => { if (typeof value === 'string') { if (calcRegex.test(value)) { return true; } } return false; };