UNPKG

proxyquire

Version:

Proxies nodejs require in order to allow overriding dependencies during testing.

10 lines (7 loc) 219 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() }