UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

15 lines (14 loc) 302 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isCalc = void 0; var calcRegex = /(^calc)/; var isCalc = exports.isCalc = function isCalc(value) { if (typeof value === 'string') { if (calcRegex.test(value)) { return true; } } return false; };