• File: foo.js
  • Full Path: /var/www/nodejs/daily_store_reports_nodejs/node_modules/proxyquire/examples/simple/foo.js
  • Date Modified: 02/04/2023 9:31 PM
  • File size: 219 bytes
  • MIME-type: text/plain
  • Charset: utf-8
var path = require('path')

module.exports.extnameAllCaps = function (file) {
  return path.extname(file).toUpperCase()
}

module.exports.basenameAllCaps = function (file) {
  return path.basename(file).toUpperCase()
}