Sha256: 5b5b4f4e7243bcfb6a32c21d4b25917e83b3ff5f7c9cceba8bd96d7a2fadbc04

Contents?: true

Size: 555 Bytes

Versions: 29

Compression:

Stored size: 555 Bytes

Contents

'use strict';

const Container = require('./container');
const Node = require('./node');

class StringNode extends Node {
  constructor (opts) {
    super(opts);
    this.type = 'string';
  }

  toString () {
    let quote = this.quoted ? this.raws.quote : '';
    return [
      this.raws.before,
      quote,
      // we can't use String() here because it'll try using itself
      // as the constructor
      this.value + '',
      quote,
      this.raws.after
    ].join('');
  }
}

Container.registerWalker(StringNode);

module.exports = StringNode;

Version data entries

29 entries across 27 versions & 8 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/postcss-color-rebeccapurple/node_modules/postcss-values-parser/lib/string.js
optimacms-0.1.61 spec/dummy/node_modules/postcss-values-parser/lib/string.js
disco_app-0.18.0 test/dummy/node_modules/postcss-values-parser/lib/string.js
disco_app-0.18.2 test/dummy/node_modules/postcss-values-parser/lib/string.js
disco_app-0.16.1 test/dummy/node_modules/postcss-values-parser/lib/string.js
disco_app-0.15.2 test/dummy/node_modules/postcss-values-parser/lib/string.js
disco_app-0.18.4 test/dummy/node_modules/postcss-values-parser/lib/string.js
disco_app-0.18.1 test/dummy/node_modules/postcss-values-parser/lib/string.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/postcss-values-parser/lib/string.js
disco_app-0.14.0 test/dummy/node_modules/postcss-values-parser/lib/string.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/postcss-values-parser/lib/string.js
tang-0.2.1 spec/tang_app/node_modules/postcss-values-parser/lib/string.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/postcss-values-parser/lib/string.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/postcss-values-parser/lib/string.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/postcss-values-parser/lib/string.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/postcss-values-parser/lib/string.js
tang-0.2.0 spec/tang_app/node_modules/postcss-values-parser/lib/string.js
tang-0.1.0 spec/tang_app/node_modules/postcss-values-parser/lib/string.js
tang-0.0.9 spec/tang_app/node_modules/postcss-values-parser/lib/string.js
enju_library-0.3.8 spec/dummy/node_modules/postcss-values-parser/lib/string.js