UNPKG

ut-tools

Version:

Build and Release management automation package.

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; };