wishthis/node_modules/postcss/lib/stringify.js

12 lines
213 B
JavaScript
Raw Normal View History

2023-08-17 09:47:40 +00:00
'use strict'
2022-01-21 08:28:41 +00:00
2023-08-17 09:47:40 +00:00
let Stringifier = require('./stringifier')
2022-01-21 08:28:41 +00:00
function stringify(node, builder) {
2023-08-17 09:47:40 +00:00
let str = new Stringifier(builder)
str.stringify(node)
2022-01-21 08:28:41 +00:00
}
2023-08-17 09:47:40 +00:00
module.exports = stringify
stringify.default = stringify