Files
less.js/lib/less/environment/environment-api.js
2014-10-12 16:49:38 +01:00

26 lines
508 B
JavaScript

module.exports = {
/**
* Converts a string to a base 64 string
* @param str
*/
encodeBase64: function(str) {
},
/**
* Lookup the mime-type of a filename
* @param filename
*/
mimeLookup: function (filename) {
},
/**
* Look up the charset of a mime type
* @param mime
*/
charsetLookup: function (mime) {
},
/**
* Gets a source map generator
*/
getSourceMapGenerator: function getSourceMapGenerator() {
}
};