MCPcopy
hub / github.com/postcss/autoprefixer / stringify

Function stringify

lib/brackets.js:37–48  ·  view source on GitHub ↗

* Generate output string by nodes tree

(ast)

Source from the content-addressed store, hash-verified

35 * Generate output string by nodes tree
36 */
37 stringify(ast) {
38 let result = ''
39 for (let i of ast) {
40 if (typeof i === 'object') {
41 result += `(${brackets.stringify(i)})`
42 continue
43 }
44
45 result += i
46 }
47 return result
48 }
49}
50
51module.exports = brackets

Callers

nothing calls this directly

Calls 1

stringifyMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…