MCPcopy
hub / github.com/tailwindlabs/prettier-plugin-tailwindcss / isSortableCallExpression

Function isSortableCallExpression

src/index.ts:530–537  ·  view source on GitHub ↗
(
  node: import('@babel/types').CallExpression,
  matcher: Matcher,
)

Source from the content-addressed store, hash-verified

528}
529
530function isSortableCallExpression(
531 node: import('@babel/types').CallExpression,
532 matcher: Matcher,
533): boolean {
534 if (!node.arguments?.length) return false
535
536 return isSortableExpression(node.callee, matcher)
537}
538
539function isSortableExpression(
540 node: import('@babel/types').Expression | import('@babel/types').V8IntrinsicIdentifier,

Callers 1

CallExpressionFunction · 0.85

Calls 1

isSortableExpressionFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…