Skip to content

Commit 7d42a40

Browse files
committed
Rename file
1 parent daf45d0 commit 7d42a40

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/utils/function-name/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838

3939
// MODULES //
4040

41-
var functionName = require( './function_name.js' );
41+
var main = require( './main.js' );
4242

4343

4444
// EXPORTS //
4545

46-
module.exports = functionName;
46+
module.exports = main;

lib/node_modules/@stdlib/utils/function-name/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ tape( 'if provided an anonymous function, the function returns an empty string o
110110
});
111111

112112
tape( 'the function supports returning a function name in ES5 and earlier environments', function test( t ) {
113-
var functionName = proxyquire( './../lib/function_name.js', {
113+
var functionName = proxyquire( './../lib/main.js', {
114114
'@stdlib/assert/has-function-name-support': stub
115115
});
116116
t.equal( functionName( beep ), 'beep', 'returns beep' );

0 commit comments

Comments
 (0)