mirror of
https://github.com/less/less.js.git
synced 2026-02-02 11:05:10 -05:00
15 lines
287 B
JavaScript
15 lines
287 B
JavaScript
(function (tree) {
|
|
|
|
tree.UnicodeDescriptor = function (value) {
|
|
this.value = value;
|
|
};
|
|
tree.UnicodeDescriptor.prototype = {
|
|
type: "UnicodeDescriptor",
|
|
toCSS: function (env) {
|
|
return this.value;
|
|
},
|
|
eval: function () { return this }
|
|
};
|
|
|
|
})(require('../tree'));
|