mirror of
https://github.com/less/less.js.git
synced 2026-02-04 20:15:06 -05:00
16 lines
325 B
JavaScript
16 lines
325 B
JavaScript
(function (tree) {
|
|
|
|
tree.UnicodeDescriptor = function (value) {
|
|
this.value = value;
|
|
};
|
|
tree.UnicodeDescriptor.prototype = {
|
|
type: "UnicodeDescriptor",
|
|
genCSS: function (env, output) {
|
|
output.add(this.value);
|
|
},
|
|
toCSS: tree.toCSS,
|
|
eval: function () { return this; }
|
|
};
|
|
|
|
})(require('../tree'));
|