
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
@johanneslumpe/css-value-declaration-grammer-lexer
Advanced tools
A lexer for css value declaration grammar
Lexer for value declarations found at https://github.com/mdn/data/. It currently implements a subset of instructions, not the full spec.
As of now it supports:
|
, ||
,
, &&
)+
, *
, ?
, !
, #
, {}
),
, /
)npm i @johanneslumpe/css-value-declaration-grammer-lexer
Below is a basic example of how to use the lexer:
import { lexValueDeclarationGrammar, formatTokens } from '@johanneslumpe/css-value-declaration-grammer-lexer';
const lexer = lexValueDeclarationGrammar(
'hsl( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsl( <hue>, <percentage>, <percentage>, <alpha-value>? )',
);
// `formatToken` will return a pretty-printed version of the emitted tokens
// which is useful for easy inspection of the token result
console.log(formatTokens(lexer.emittedTokens));
// the above will log:
//
// hsl( FUNCTION (FUNCTION_START)
// <hue> DATA_TYPE (BASIC)
// COMBINATOR (JUXTAPOSITION)
// <percentage> DATA_TYPE (BASIC)
// COMBINATOR (JUXTAPOSITION)
// <percentage> DATA_TYPE (BASIC)
// COMBINATOR (JUXTAPOSITION)
// [ GROUP (GROUP_START)
// / LITERAL
// COMBINATOR (JUXTAPOSITION)
// <alpha-value> DATA_TYPE (BASIC)
// ] GROUP (GROUP_END)
// ? MULTIPLIER (QUESTION_MARK)
// ) FUNCTION (FUNCTION_END)
// | COMBINATOR (SINGLE_BAR)
// hsl( FUNCTION (FUNCTION_START)
// <hue> DATA_TYPE (BASIC)
// , LITERAL
// COMBINATOR (JUXTAPOSITION)
// <percentage> DATA_TYPE (BASIC)
// , LITERAL
// COMBINATOR (JUXTAPOSITION)
// <percentage> DATA_TYPE (BASIC)
// , LITERAL
// COMBINATOR (JUXTAPOSITION)
// <alpha-value> DATA_TYPE (BASIC)
// ? MULTIPLIER (QUESTION_MARK)
// ) FUNCTION (FUNCTION_END)
Typedocs can be found in the docs folder
FAQs
A lexer for css value declaration grammar
We found that @johanneslumpe/css-value-declaration-grammer-lexer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.