📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-04 01:44:51
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
node_modules
/
postcss-value-parser
/
lib
📍 /home/orkouolp/web/testing.orkobd/laravel/node_modules/postcss-value-parser/lib
🔄 Refresh
✏️
Editing: index.js
Writable
var parse = require("./parse"); var walk = require("./walk"); var stringify = require("./stringify"); function ValueParser(value) { if (this instanceof ValueParser) { this.nodes = parse(value); return this; } return new ValueParser(value); } ValueParser.prototype.toString = function() { return Array.isArray(this.nodes) ? stringify(this.nodes) : ""; }; ValueParser.prototype.walk = function(cb, bubble) { walk(this.nodes, cb, bubble); return this; }; ValueParser.unit = require("./unit"); ValueParser.walk = walk; ValueParser.stringify = stringify; module.exports = ValueParser;
💾 Save Changes
❌ Cancel