UNPKG

d2-ui

Version:
10 lines (7 loc) 226 B
var path = require('path'); module.exports.extnameAllCaps = function (file) { return path.extname(file).toUpperCase(); }; module.exports.basenameAllCaps = function (file) { return path.basename(file).toUpperCase(); };