Sha256: f8d213c3c83e6a39c8c7ed31bdcd8d28e84d8a155e7cdbc9e561135f33629b97

Contents?: true

Size: 1.15 KB

Versions: 89

Compression:

Stored size: 1.15 KB

Contents

function stringifyNode(node, custom) {
  var type = node.type;
  var value = node.value;
  var buf;
  var customResult;

  if (custom && (customResult = custom(node)) !== undefined) {
    return customResult;
  } else if (type === "word" || type === "space") {
    return value;
  } else if (type === "string") {
    buf = node.quote || "";
    return buf + value + (node.unclosed ? "" : buf);
  } else if (type === "comment") {
    return "/*" + value + (node.unclosed ? "" : "*/");
  } else if (type === "div") {
    return (node.before || "") + value + (node.after || "");
  } else if (Array.isArray(node.nodes)) {
    buf = stringify(node.nodes);
    if (type !== "function") {
      return buf;
    }
    return (
      value +
      "(" +
      (node.before || "") +
      buf +
      (node.after || "") +
      (node.unclosed ? "" : ")")
    );
  }
  return value;
}

function stringify(nodes, custom) {
  var result, i;

  if (Array.isArray(nodes)) {
    result = "";
    for (i = nodes.length - 1; ~i; i -= 1) {
      result = stringifyNode(nodes[i], custom) + result;
    }
    return result;
  }
  return stringifyNode(nodes, custom);
}

module.exports = stringify;

Version data entries

89 entries across 69 versions & 12 rubygems

Version Path
disco_app-0.18.4 test/dummy/node_modules/autoprefixer/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.18.4 test/dummy/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.18.1 test/dummy/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.18.1 test/dummy/node_modules/autoprefixer/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/autoprefixer/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.14.0 test/dummy/node_modules/autoprefixer/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.14.0 test/dummy/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/autoprefixer/node_modules/postcss-value-parser/lib/stringify.js
trusty-cms-5.0.1 node_modules/postcss-value-parser/lib/stringify.js
trusty-cms-4.3.5 node_modules/postcss-value-parser/lib/stringify.js
trusty-cms-5.0.0 node_modules/postcss-value-parser/lib/stringify.js
trusty-cms-4.3.4 node_modules/postcss-value-parser/lib/stringify.js
trusty-cms-4.3.3 node_modules/postcss-value-parser/lib/stringify.js
trusty-cms-4.3.2 node_modules/postcss-value-parser/lib/stringify.js
trusty-cms-4.3.1 node_modules/postcss-value-parser/lib/stringify.js
boring_generators-0.11.0 tmp/templates/app_template/node_modules/postcss-value-parser/lib/stringify.js
trusty-cms-4.3 node_modules/postcss-value-parser/lib/stringify.js
boring_generators-0.10.0 tmp/templates/app_template/node_modules/postcss-value-parser/lib/stringify.js