UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

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