@@ -231,8 +231,8 @@ The example below sets the `Authorization` HTTP header so it is sent on the subs
231231DELETE requests:
232232``` javascript
233233fetchJson .setBaseOptions ({ headers: { Authorization: ' Basic WE1MIGlzIGhpZGVvdXM=' } });
234- fetchJson .get (' https://dna-engine .org/api/books/' ).then (display); // with auth header
235- fetchJson .delete (' https://dna-engine .org/api/books/3/' ); // with auth header
234+ fetchJson .get (' https://dna-dom .org/api/books/' ).then (display); // with auth header
235+ fetchJson .delete (' https://dna-dom .org/api/books/3/' ); // with auth header
236236```
237237
238238To have multiple base options available at the same time, use the ` FetchJson ` class to instantiate
@@ -242,8 +242,8 @@ import { FetchJson } from 'fetch-json';
242242
243243const fetchJsonA = new FetchJson ({ headers: { From: ' aaa@example.com' } }).fetchJson ;
244244const fetchJsonB = new FetchJson ({ headers: { From: ' bbb@example.com' } }).fetchJson ;
245- fetchJsonA .get (' https://dna-engine .org/api/books/' ).then (display); // from aaa@example.com
246- fetchJsonB .delete (' https://dna-engine .org/api/books/3/' ); // from bbb@example.com
245+ fetchJsonA .get (' https://dna-dom .org/api/books/' ).then (display); // from aaa@example.com
246+ fetchJsonB .delete (' https://dna-dom .org/api/books/3/' ); // from bbb@example.com
247247```
248248
249249## I) TypeScript Declarations
@@ -290,7 +290,7 @@ interesting approach to organizing build tasks.
290290<br >
291291
292292---
293- _ "Stop trying to make fetch happen without [ #fetchJson] ( https://twitter .com/hashtag/fetchJson ) !"_
293+ _ "Stop trying to make fetch happen without [ #fetchJson] ( https://x .com/hashtag/fetchJson ) !"_
294294
295295Feel free to submit questions at:<br >
296296[ github.com/center-key/fetch-json/issues] ( https://github.com/center-key/fetch-json/issues )
0 commit comments