mirror of
https://github.com/less/less.js.git
synced 2026-02-08 22:15:04 -05:00
10 lines
196 B
JavaScript
10 lines
196 B
JavaScript
|
|
node.URL = function URL(val) {
|
|
this.value = val;
|
|
};
|
|
node.URL.prototype = {
|
|
toCSS: function () {
|
|
return "url(" + this.value.toCSS ? this.value.toCSS() : this.value + ")";
|
|
}
|
|
};
|