File size: 293 Bytes
e08ecbf
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
const path = require('path');

// Mocks every media file to return its filename. 
// Return just the file name without wrapping in an object
module.exports = {
  process: (_, filename) => {
    return `module.exports = '${path.basename(filename)}'`; // Return the filename as a string
  },
};