Files
less.js/lib/less/plugin-api.js
Matthew Dean b782411278 Sync default options across all Less.js environments
- More tests for plugins
2017-01-10 17:44:50 -08:00

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('')
}
};
}));