mirror of
https://github.com/less/less.js.git
synced 2026-01-23 06:07:56 -05:00
26 lines
508 B
JavaScript
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() {
|
|
}
|
|
};
|