mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 08:37:49 +00:00
Apply even more let/const transforms.
This commit is contained in:
@@ -2,10 +2,10 @@ import root from './_root.js';
|
||||
import toString from './toString.js';
|
||||
|
||||
/** Used to match leading and trailing whitespace. */
|
||||
var reTrimStart = /^\s+/;
|
||||
const reTrimStart = /^\s+/;
|
||||
|
||||
/* Built-in method references for those with the same name as other `lodash` methods. */
|
||||
var nativeParseInt = root.parseInt;
|
||||
const nativeParseInt = root.parseInt;
|
||||
|
||||
/**
|
||||
* Converts `string` to an integer of the specified radix. If `radix` is
|
||||
|
||||
Reference in New Issue
Block a user