Advertisement
Guest User

Untitled

a guest
Nov 11th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1.  
  2. import BullshitService from "./bullshitService";
  3.  
  4. const sentences = {
  5. passedSentences: [],
  6. discardedSentences: []
  7. };
  8.  
  9. let bullshits = [];
  10.  
  11. async function getBullshits() {
  12. let result = await BullshitService.getData();
  13. bullshits = await BullshitService.getData();
  14.  
  15. return result.bullshits;
  16. }
  17.  
  18. getBullshits();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement