Skip to content

Commit

Permalink
fix lint for node
Browse files Browse the repository at this point in the history
  • Loading branch information
jchen293 committed Jul 15, 2024
1 parent 48d0df4 commit d88ce34
Show file tree
Hide file tree
Showing 5 changed files with 368 additions and 368 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ const EasyPostClient = require('@easypost/api');
const client = new EasyPostClient('EASYPOST_API_KEY');

const params = {
from_zip: "10001",
to_zip: "10002",
planned_ship_date: "2024-07-18",
carriers: ["UPS"],
};
from_zip: '10001',
to_zip: '10002',
planned_ship_date: '2024-07-18',
carriers: ['UPS'],
};

(async () => {
const results = await client.SmartRate.estimateDeliveryDate(params);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ const EasyPostClient = require('@easypost/api');
const client = new EasyPostClient('EASYPOST_API_KEY');

const params = {
from_zip: "10001",
to_zip: "10002",
desired_delivery_date: "2024-07-18",
carriers: ["UPS"],
};
from_zip: '10001',
to_zip: '10002',
desired_delivery_date: '2024-07-18',
carriers: ['UPS'],
};

(async () => {
const results = await client.SmartRate.recommendShipDate(params);
Expand Down
Loading

0 comments on commit d88ce34

Please sign in to comment.