1 | const rows = {"rows":[ |
||
2 | {"GT_RowId":123,"title":"Test Bar 123st row","id":123,"desc":"Lorem Ipsum is simply dummy Bar 7196 text of the printing and typesetting","info":"some info some info some info some info","date":"13:23:43 02:04:2017","field1":123,"field2":1357,"field3":12468}, |
||
3 | {"GT_RowId":66,"title":"Test Foo 66st row","id":66,"desc":"Lorem Ipsum is simply dummy Foo 9608 text of the printing and typesetting","info":"some info some info some info some info","date":"13:24:40 02:04:2017","field1":0,"field2":1300,"field3":12411}, |
||
4 | {"GT_RowId":105,"title":"Test Bar 105st row","id":105,"desc":"Lorem Ipsum is simply dummy Bar 7258 text of the printing and typesetting","info":"some info some info some info some info","date":"13:24:01 02:04:2017","field1":null,"field2":1339,"field3":12450} |
||
5 | ]}; |
||
6 | |||
7 | export default function fetch(url) { |
||
0 ignored issues
–
show
|
|||
8 | return new Promise((resolve, reject) => { |
||
0 ignored issues
–
show
|
|||
9 | process.nextTick( |
||
10 | () => resolve(rows) |
||
11 | ); |
||
12 | }); |
||
13 | } |
||
14 |
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.