module.exports=function(){varfunctionRegistry=require('./../less/functions/function-registry');functionimageSize(){throw{type:'Runtime',message:'Image size functions are not supported in browser version of less'};}varimageFunctions={'image-size':function(filePathNode){imageSize(this,filePathNode);return-1;},'image-width':function(filePathNode){imageSize(this,filePathNode);return-1;},'image-height':function(filePathNode){imageSize(this,filePathNode);return-1;}};functionRegistry.addMultiple(imageFunctions);};