UNPKG

stylelint

Version:

A mighty, modern CSS linter.

12 lines (9 loc) 228 B
'use strict'; /** * @param {import('postcss').Declaration} decl * @returns {string} */ module.exports = function getDeclarationValue(decl) { const raws = decl.raws; return (raws.value && raws.value.raw) || decl.value; };