mirror of
https://github.com/less/less.js.git
synced 2026-04-09 03:00:20 -04:00
14 lines
232 B
JavaScript
14 lines
232 B
JavaScript
(function (tree) {
|
|
|
|
tree.Ratio = function (value) {
|
|
this.value = value;
|
|
};
|
|
tree.Ratio.prototype = {
|
|
toCSS: function (env) {
|
|
return this.value;
|
|
},
|
|
eval: function () { return this }
|
|
};
|
|
|
|
})(require('../tree'));
|