UNPKG

stylelint-scss

Version:

A collection of SCSS-specific rules for Stylelint

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