foo.js 226 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 var path = require('path'); module.exports.extnameAllCaps = function (file) { return path.extname(file).toUpperCase(); }; module.exports.basenameAllCaps = function (file) { return path.basename(file).toUpperCase(); };