Press n or j to go to the next uncovered block, b, p or k for the previous block.
/** * Returns true if the provided key is a CSS variable */ export function isCSSVariable(key: string) { return key.startsWith("--") }