UNPKG

stylelint

Version:

A mighty, modern CSS linter.

12 lines (9 loc) 229 B
'use strict'; const _ = require('lodash'); /** * @param {import('postcss').Declaration} decl * @returns {string} */ module.exports = function getDeclarationValue(decl) { return _.get(decl, 'raws.value.raw', decl.value); };