Apply more let/const transforms.

This commit is contained in:
John-David Dalton
2017-01-08 23:38:19 -08:00
parent ca9e6fa087
commit 4d0c15b49e
115 changed files with 621 additions and 613 deletions

View File

@@ -15,6 +15,6 @@ import createMathOperation from './_createMathOperation.js';
* _.subtract(6, 4);
* // => 2
*/
var subtract = createMathOperation((minuend, subtrahend) => minuend - subtrahend, 0);
const subtract = createMathOperation((minuend, subtrahend) => minuend - subtrahend, 0);
export default subtract;