aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/css-tree/lib/syntax/function/expression.js
blob: 040f826c93a0ef4299f22c125d92df1a1c420dc0 (plain) (blame)
1
2
3
4
5
6
7
// legacy IE function
// expression( <any-value> )
export default function() {
    return this.createSingleNodeList(
        this.Raw(null, false)
    );
}