Skip to content

Commit bf08927

Browse files
committed
fix: avoid named export of reserved keyword
1 parent 9d5379d commit bf08927

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/array/base/lib

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/array/base/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1450,13 +1450,13 @@ setReadOnly( ns, 'unarynd', require( '@stdlib/array/base/unarynd' ) );
14501450
setReadOnly( ns, 'unitspace', require( '@stdlib/array/base/unitspace' ) );
14511451

14521452
/**
1453-
* @name with
1453+
* @name arrayWith
14541454
* @memberof ns
14551455
* @readonly
14561456
* @type {Function}
14571457
* @see {@link module:@stdlib/array/base/with}
14581458
*/
1459-
setReadOnly( ns, 'with', require( '@stdlib/array/base/with' ) );
1459+
setReadOnly( ns, 'arrayWith', require( '@stdlib/array/base/with' ) );
14601460

14611461
/**
14621462
* @name zeroTo

0 commit comments

Comments
 (0)