Sha256: bea6103af615bb9d65a2fc6dff1b2ab8a32b5ca33e263b5a2c8d458c4eff19fc

Contents?: true

Size: 1.16 KB

Versions: 70

Compression:

Stored size: 1.16 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, custom);
    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

70 entries across 32 versions & 9 rubygems

Version Path
rapid_stack-0.2.0 templates/frontend/node_modules/postcss-value-parser/lib/stringify.js
rapid_stack-0.1.1 templates/FrontEnd/node_modules/postcss-value-parser/lib/stringify.js
rapid_stack-0.1.0 templates/FrontEnd/node_modules/postcss-value-parser/lib/stringify.js
trusty-cms-6.3.1 node_modules/postcss-value-parser/lib/stringify.js
boring_generators-0.15.0 tmp/templates/app_template/node_modules/autoprefixer/node_modules/postcss-value-parser/lib/stringify.js
boring_generators-0.14.0 tmp/templates/app_template/node_modules/autoprefixer/node_modules/postcss-value-parser/lib/stringify.js
optimacms-0.1.61 spec/dummy/node_modules/postcss-modules-local-by-default/node_modules/postcss-value-parser/lib/stringify.js
optimacms-0.1.61 spec/dummy/node_modules/cssnano-preset-default/node_modules/postcss-value-parser/lib/stringify.js
optimacms-0.1.61 spec/dummy/node_modules/css-loader/node_modules/postcss-value-parser/lib/stringify.js
optimacms-0.1.61 spec/dummy/node_modules/autoprefixer/node_modules/postcss-value-parser/lib/stringify.js
optimacms-0.1.61 spec/dummy/node_modules/@rails/webpacker/node_modules/postcss-value-parser/lib/stringify.js
boring_generators-0.13.0 tmp/templates/app_template/node_modules/autoprefixer/node_modules/postcss-value-parser/lib/stringify.js
decidim-0.26.8 packages/eslint-config/node_modules/postcss-value-parser/lib/stringify.js
boring_generators-0.12.0 tmp/templates/app_template/node_modules/autoprefixer/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.16.1 test/dummy/node_modules/postcss-modules-local-by-default/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.16.1 test/dummy/node_modules/css-loader/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.15.2 test/dummy/node_modules/css-loader/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.15.2 test/dummy/node_modules/postcss-modules-local-by-default/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.18.4 test/dummy/node_modules/css-loader/node_modules/postcss-value-parser/lib/stringify.js
disco_app-0.18.4 test/dummy/node_modules/postcss-modules-local-by-default/node_modules/postcss-value-parser/lib/stringify.js