UNPKG

stylelint

Version:

A mighty, modern CSS linter.

12 lines (8 loc) 257 B
'use strict'; // To generate parser.js run the following command in the current directory: // // npx jison-gho parser.jison -o parser.js const parse = require('./parser').parse; module.exports = function parseCalcExpression(exp) { return parse(exp); };