UNPKG

@pandabox/unplugin

Version:

Panda CSS as a Vite/Rollup/Webpack/Esbuild plugin

10 lines (7 loc) 215 B
import { Node } from 'ts-morph' export const getVariableName = (node: Node) => { const parent = node.getParent() if (!Node.isVariableDeclaration(parent)) return const name = parent.getName() return name }