// TODO: Add tests for browser @plugin/* global window */varAbstractPluginLoader=require('../less/environment/abstract-plugin-loader.js');/** * Browser Plugin Loader */varPluginLoader=function(less){this.less=less;// Should we shim this.require for browser? Probably not?};PluginLoader.prototype=newAbstractPluginLoader();PluginLoader.prototype.loadPlugin=function(filename,basePath,context,environment,fileManager){returnnewPromise(function(fulfill,reject){fileManager.loadFile(filename,basePath,context,environment).then(fulfill).catch(reject);});};module.exports=PluginLoader;