We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5d4cba commit 9995005Copy full SHA for 9995005
src/_stringify_digits.js
@@ -11,9 +11,11 @@ export function _stringify_digits ( { str } ) {
11
repr += toStr(integral) ;
12
13
if (transient.length || repetend.length) repr += '.' ;
14
+ // eslint-disable-next-line unicorn/no-array-callback-reference
15
repr += transient.map(toStr).join('') ;
16
17
if (repetend.length) repr += '|' ;
18
19
repr += repetend.map(toStr).join('') ;
20
21
return repr ;
0 commit comments