mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 01:57:50 +00:00
Apply even more let/const transforms.
This commit is contained in:
4
join.js
4
join.js
@@ -1,8 +1,8 @@
|
||||
/** Used for built-in method references. */
|
||||
var arrayProto = Array.prototype;
|
||||
const arrayProto = Array.prototype;
|
||||
|
||||
/* Built-in method references for those with the same name as other `lodash` methods. */
|
||||
var nativeJoin = arrayProto.join;
|
||||
const nativeJoin = arrayProto.join;
|
||||
|
||||
/**
|
||||
* Converts all elements in `array` into a string separated by `separator`.
|
||||
|
||||
Reference in New Issue
Block a user