mirror of
https://github.com/less/less.js.git
synced 2026-02-07 05:25:04 -05: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'));
|