From c0b07c5773ffa20b3ba751613dc8781d5c0c0b1f Mon Sep 17 00:00:00 2001 From: Vistril <38549907+Vistril@users.noreply.github.com> Date: Wed, 22 May 2019 20:47:30 -0600 Subject: [PATCH] DuckDuckGo, Yahoo Don't know why or who would actually use these, but diversity is important --- index.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/index.js b/index.js index 87de034..3f0e66e 100644 --- a/index.js +++ b/index.js @@ -76,6 +76,14 @@ console.log("start"); case "a": pup(msg, `https://www.amazon.com/s?k=${encodeURIComponent(query)}`); break; + case "duckduckgo": + case "ddg": + pup(msg, `https://duckduckgo.com/?q=${encodeURIComponent(query)}`); + break; + case "yahoo": + case "y": + pup(msg, `https://search.yahoo.com/search?p=${encodeURIComponent(query)}`); + break; /* case "": case "": -- 2.39.3