mirror of
https://github.com/less/less.js.git
synced 2026-05-01 03:00:22 -04:00
16 lines
483 B
JavaScript
16 lines
483 B
JavaScript
(function (root, factory) {
|
|
if (typeof define === 'function' && define.amd) {
|
|
define([], factory);
|
|
} else if (typeof module === 'object' && module.exports) {
|
|
module.exports = factory();
|
|
} else {
|
|
(root.LESS_PLUGINS = root.LESS_PLUGINS || []).push(factory());
|
|
}
|
|
}(this, function () {
|
|
// Less.js Plugin object
|
|
return {
|
|
install: function(less, pluginManager, functions) {
|
|
// functions.add('')
|
|
}
|
|
};
|
|
})); |