Fixin missing references in repeat.

This commit is contained in:
Michał Lipiński
2017-04-04 20:35:33 +02:00
parent 645acd4275
commit 96ebd44509

View File

@@ -1,3 +1,9 @@
/* Used as references for the maximum safe integer in JavaScript Math.pow(2, 53) - 1 */
const MAX_SAFE_INTEGER = 9007199254740991
/* Built-in method references for those with the same name as other `lodash` methods. */
const nativeFloor = Math.floor
/**
* Repeats the given string `n` times.
*