Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 19x 19x 1x 1x 351x 351x 1x 1x 166x 166x 1x 1x 5x 5x 1x 1x 4x 4x 1x 1x 4x 4x 1x 1x 8x 8x 1x 1x 10x 10x 1x 1x 1x 1x 1x 1x 6x 6x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import '../modules/DominosErrors.js'; import Is from 'strong-type'; import {FetchError} from 'node-fetch'; import Address from '../modules/Address.js'; import AmountsBreakdown from '../modules/AmountsBreakdown.js'; import NearbyStores from '../modules/NearbyStores.js'; import Menu from '../modules/Menu.js'; import Store from '../modules/Store.js'; import Item from '../modules/Item.js'; import Image from '../modules/Image.js'; import Customer from '../modules/Customer.js'; import Tracking from '../modules/Tracking.js'; import Payment from '../modules/Payment.js'; import VanillaTest from 'vanilla-test'; class IsDominos extends Is{ test(value){ return this.instanceCheck(value,VanillaTest); } address(value){ return this.instanceCheck(value,Address); } amountsBreakdown(value){ return this.instanceCheck(value,AmountsBreakdown); } nearbyStores(value){ return this.instanceCheck(value,NearbyStores); } menu(value){ return this.instanceCheck(value,Menu); } store(value){ return this.instanceCheck(value,Store); } item(value){ return this.instanceCheck(value,Item); } customer(value){ return this.instanceCheck(value,Customer); } image(value){ return this.instanceCheck(value,Image); } payment(value){ return this.instanceCheck(value,Payment); } tracking(value){ return this.instanceCheck(value,Tracking); } validationError(value){ return this.instanceCheck(value,DominosValidationError); } priceError(value){ return this.instanceCheck(value,DominosPriceError); } placeOrderError(value){ return this.instanceCheck(value,DominosPlaceOrderError); } trackingError(value){ return this.instanceCheck(value,DominosTrackingError); } addressError(value){ return this.instanceCheck(value,DominosAddressError); } dateError(value){ return this.instanceCheck(value,DominosDateError); } storeError(value){ return this.instanceCheck(value,DominosStoreError); } productsError(value){ return this.instanceCheck(value,DominosProductsError); } fetchError(value){ return this.instanceCheck(value,FetchError); } } export { IsDominos as default, IsDominos }; |