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
trusty-cms-6.3.1 node_modules/stylelint-scss/node_modules/postcss-value-parser/lib/stringify.js
boring_generators-0.15.0 tmp/templates/app_template/node_modules/postcss-value-parser/lib/stringify.js
boring_generators-0.14.0 tmp/templates/app_template/node_modules/postcss-value-parser/lib/stringify.js
optimacms-0.1.61 spec/dummy/node_modules/postcss-value-parser/lib/stringify.js
boring_generators-0.13.0 tmp/templates/app_template/node_modules/postcss-value-parser/lib/stringify.js
boring_generators-0.12.0 tmp/templates/app_template/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.18.0 test/dummy/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.18.0 test/dummy/node_modules/autoprefixer/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.18.2 test/dummy/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.18.2 test/dummy/node_modules/autoprefixer/node_modules/postcss-value-parser/lib/stringify.js
trusty-cms-5.0.7 node_modules/postcss-value-parser/lib/stringify.js
trusty-cms-5.0.6 node_modules/postcss-value-parser/lib/stringify.js
trusty-cms-5.0.5 node_modules/postcss-value-parser/lib/stringify.js
trusty-cms-5.0.4 node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.16.1 test/dummy/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.16.1 test/dummy/node_modules/autoprefixer/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.15.2 test/dummy/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.15.2 test/dummy/node_modules/autoprefixer/node_modules/postcss-value-parser/lib/stringify.js
trusty-cms-5.0.3 node_modules/postcss-value-parser/lib/stringify.js
trusty-cms-5.0.2 node_modules/postcss-value-parser/lib/stringify.js