Skip to content

Commit cf84a4b

Browse files
committed
chore: rename internal variable to main in @stdlib/datasets/month-names-en
Renames the internal `lib/index.js` binding from `months` to `main`, matching the canonical stdlib `lib/index.js` shape (~92% conformance across 5028 lib/index.js files; 53/57 conformance within `@stdlib/datasets`). The variable is local to the file and has no observable effect on the public API.
1 parent d2479d9 commit cf84a4b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/datasets/month-names-en/lib

lib/node_modules/@stdlib/datasets/month-names-en/lib/index.js

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

3333
// MODULES //
3434

35-
var months = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

40-
module.exports = months;
40+
module.exports = main;

0 commit comments

Comments
 (0)