UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

4 lines 280 B
import { isNodeOfType } from 'eslint-codemod-utils'; export var isFontFamily = function isFontFamily(node) { return isNodeOfType(node, 'CallExpression') && isNodeOfType(node.callee, 'Identifier') && (node.callee.name === 'fontFamily' || node.callee.name === 'getFontFamily'); };