Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Double Quotes #37

Open
AL202020 opened this issue Apr 21, 2020 · 0 comments
Open

Double Quotes #37

AL202020 opened this issue Apr 21, 2020 · 0 comments

Comments

@AL202020
Copy link

Please adjust the auth.js in order to have 'XXXXX' instead of "XXXXX" in whole code, users may not figure out why this is not working... ;). Double quotes seem to produce syntax error:

SyntaxError: Unexpected identifier
�[90m    at wrapSafe (internal/modules/cjs/loader.js:1101:16)�[39m
�[90m    at Module._compile (internal/modules/cjs/loader.js:1149:27)�[39m
�[90m    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1205:10)�[39m
�[90m    at Module.load (internal/modules/cjs/loader.js:1034:32)�[39m
�[90m    at Function.Module._load (internal/modules/cjs/loader.js:923:14)�[39m
�[90m    at Module.require (internal/modules/cjs/loader.js:1074:19)�[39m
�[90m    at require (internal/modules/cjs/helpers.js:72:18)�[39m
    at Object.<anonymous> (C:\Temp\food\delivery-finder\finder.js:5:20)
�[90m    at Module._compile (internal/modules/cjs/loader.js:1185:30)�[39m
�[90m    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1205:10)�[39m

How it is:

const walmartGroceries = {
  cookie: "XXXXX",
  store_id: "XXXXX",
  cart_id: "XXXXX"

How it should be, Suggested:

// to find availability in Walmart Groceries, replace XXXXX with value of `cookie`, `cart id` & `store id` you collected in Step 3
const walmartGroceries = {
  cookie: 'XXXXX',
  store_id: 'XXXXX',
  cart_id: 'XXXXX'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant