Files
2026-09-08 20:28:54 +08:00

16 lines
274 B
JavaScript

(function() {
var Path;
Path = require('path');
module.exports = (function() {
switch (Path.extname(__filename)) {
case '.coffee':
return require('./src/logcat');
default:
return require('./lib/logcat');
}
})();
}).call(this);