mirror of
https://github.com/less/less.js.git
synced 2026-04-09 03:00:20 -04:00
mixin.js init
This commit is contained in:
11
lib/less/node/mixin.js
Normal file
11
lib/less/node/mixin.js
Normal file
@@ -0,0 +1,11 @@
|
||||
if (typeof(window) === 'undefined') { var tree = require(require('path').join(__dirname, '..', '..', 'less', 'tree')); }
|
||||
|
||||
tree.mixin = {};
|
||||
tree.mixin.Call = function MixinCall(mixins) {
|
||||
this.mixins = mixins;
|
||||
};
|
||||
tree.mixin.Call.prototype = {
|
||||
toCSS: function (context, env) {
|
||||
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user