(str, level)
| 6293 | var fileCache = {}; |
| 6294 | |
| 6295 | function log(str, level) { |
| 6296 | if (less.env == 'development' && typeof(console) !== 'undefined' && less.logLevel >= level) { |
| 6297 | console.log('less: ' + str); |
| 6298 | } |
| 6299 | } |
| 6300 | |
| 6301 | function extractId(href) { |
| 6302 | return href.replace(/^[a-z-]+:\/+?[^\/]+/, '' ) // Remove protocol & domain |
no outgoing calls
no test coverage detected