Removing placeholders
This commit is contained in:
@@ -1,21 +1,16 @@
|
|||||||
import setText from './results.mjs';
|
import setText from './results.mjs';
|
||||||
|
|
||||||
export function get(){
|
export function get(){
|
||||||
setText('A');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getCatch(){
|
export function getCatch(){
|
||||||
setText('B');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function chain(){
|
export function chain(){
|
||||||
setText('C');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function chainCatch(){
|
export function chainCatch(){
|
||||||
setText('C1')
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function final(){
|
export function final(){
|
||||||
setText('D');
|
|
||||||
}
|
}
|
||||||
@@ -1,29 +1,22 @@
|
|||||||
import setText from './results.mjs';
|
import setText from './results.mjs';
|
||||||
|
|
||||||
export function timeout(){
|
export function timeout(){
|
||||||
setText('A');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function interval(){
|
export function interval(){
|
||||||
setText('B');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function clearInterval(){
|
export function clearInterval(){
|
||||||
setText('C');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function xhr(){
|
export function xhr(){
|
||||||
setText('D');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function allPromises(){
|
export function allPromises(){
|
||||||
setText('E');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function allSettled(){
|
export function allSettled(){
|
||||||
setText('F');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function race(){
|
export function race(){
|
||||||
setText('G');
|
|
||||||
}
|
}
|
||||||
@@ -1,23 +1,18 @@
|
|||||||
import setText from './results.mjs';
|
import setText from './results.mjs';
|
||||||
|
|
||||||
export function get(){
|
export function get(){
|
||||||
setText('A');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getCatch(){
|
export function getCatch(){
|
||||||
setText('B');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function chain(){
|
export function chain(){
|
||||||
setText('C');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function concurrent(){
|
export function concurrent(){
|
||||||
setText('D');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function parallel(){
|
export function parallel(){
|
||||||
setText('E');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user