Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jaredlockhart/3cdd970dd105c2fc0353ba1783a8c4e6 to your computer and use it in GitHub Desktop.
Save jaredlockhart/3cdd970dd105c2fc0353ba1783a8c4e6 to your computer and use it in GitHub Desktop.
47 function getMetadata(url) {
48 const response = new Promise((resolve, reject) => {
49 jsdom.env({
50 url: url,
51 scripts: [],
52 done: (err, window) => {
53 const metaData = {
54 title: applyRules(window.document, titleRules),
55 canonicalUrl: applyRules(window.document, canonicalRules),
56 };
57
58 resolve(metaData);
59 }
60 });
61 });
62
63 return response;
64 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment