File tree 2 files changed +5
-6
lines changed
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 12
12
13
13
<details >
14
14
15
+ - [ ` abf0407 ` ] ( https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f ) - ** chore:** resolve lint errors in TS files _ (by Philipp Burckhardt)_
15
16
- [ ` 975147f ` ] ( https://github.com/stdlib-js/stdlib/commit/975147f3125c786ec1672acb3d2564ca16eaa790 ) - ** docs:** fix TSDoc lint errors _ (by Philipp Burckhardt)_
16
17
- [ ` 20dea8a ` ] ( https://github.com/stdlib-js/stdlib/commit/20dea8af2b14181aa75354f7e3aeb65b955904b9 ) - ** docs:** remove extraneous newline _ (by Athan Reines)_
17
18
Original file line number Diff line number Diff line change @@ -26,11 +26,10 @@ import accessors = require( './index' );
26
26
/**
27
27
* Returns an array-like object supporting the get/set protocol.
28
28
*
29
- * @return array-like object
29
+ * @returns array-like object
30
30
*/
31
31
function accessorArray ( ) : AccessorArrayLike < number > {
32
- let arr : AccessorArrayLike < number > ;
33
- arr = {
32
+ const arr : AccessorArrayLike < number > = {
34
33
'0' : 1 ,
35
34
'1' : 2 ,
36
35
'2' : 3 ,
@@ -49,11 +48,10 @@ function accessorArray(): AccessorArrayLike<number> {
49
48
/**
50
49
* Returns an array-like object.
51
50
*
52
- * @return array-like object
51
+ * @returns array-like object
53
52
*/
54
53
function arrayLike ( ) : ArrayLike < number > {
55
- let arr : ArrayLike < number > ;
56
- arr = {
54
+ const arr : ArrayLike < number > = {
57
55
'0' : 1 ,
58
56
'1' : 2 ,
59
57
'2' : 3 ,
You can’t perform that action at this time.
0 commit comments