芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/public_html/node_modules/postcss-merge-longhand/src/lib/getLastNode.js
'use strict'; /** @type {(rule: import('postcss').AnyNode[], prop: string) => import('postcss').Declaration} */ module.exports = (rule, prop) => { return /** @type {import('postcss').Declaration} */ ( rule.filter((n) => n.type === 'decl' && n.prop.toLowerCase() === prop).pop() ); };