Skip to content

Commit

Permalink
initial commit of tsconfig.json file and some initial jsdoc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sfishel18 committed Mar 16, 2024
1 parent 33dcf5a commit 925510e
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 10 deletions.
13 changes: 13 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"license": "Apache-2.0",
"devDependencies": {
"@tgwf/url2green": "^0.4.0",
"@tsconfig/strictest": "^2.0.3",
"all-contributors-cli": "^6.26.1",
"esbuild": "^0.14.47",
"esbuild-jest": "^0.5.0",
Expand Down Expand Up @@ -76,4 +77,4 @@
"type": "git",
"url": "https://github.com/thegreenwebfoundation/co2.js.git"
}
}
}
7 changes: 5 additions & 2 deletions src/helpers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,13 @@ function parseOptions(options) {
* Returns an object containing all the HTTP headers to use when making a request to the Green Web Foundation API.
* @param {string} comment - Optional. The app, site, or organisation that is making the request.
*
* @returns {import('http').OutgoingHttpHeaders}
* @returns {Record<string, string>}
*/
function getApiRequestHeaders(comment = "") {
return { "User-Agent": `co2js/${process.env.CO2JS_VERSION} ${comment}` };
if (!process.env["CO2JS_VERSION"]) {
return {};
}
return { "User-Agent": `co2js/${process.env["CO2JS_VERSION"]} ${comment}` };
}

export { formatNumber, parseOptions, getApiRequestHeaders };
10 changes: 5 additions & 5 deletions src/hosting-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { getApiRequestHeaders } from "./helpers/index.js";

/**
* Check if a string or array of domains has been provided
* @param {string|array} domain - The domain to check, or an array of domains to be checked.
* @param {string | string[]} domain - The domain to check, or an array of domains to be checked.
* @param {string} userAgentIdentifier - Optional. The app, site, or organisation that is making the request.
*/

Expand All @@ -21,7 +21,7 @@ function check(domain, userAgentIdentifier) {
* Check if a domain is hosted by a green web host by querying the Green Web Foundation API.
* @param {string} domain - The domain to check.
* @param {string} userAgentIdentifier - Optional. The app, site, or organisation that is making the request.
* @returns {boolean} - A boolean indicating whether the domain is hosted by a green web host.
* @returns {Promise<boolean>} - A boolean indicating whether the domain is hosted by a green web host.
*/
async function checkAgainstAPI(domain, userAgentIdentifier) {
const req = await fetch(
Expand All @@ -36,9 +36,9 @@ async function checkAgainstAPI(domain, userAgentIdentifier) {

/**
* Check if an array of domains is hosted by a green web host by querying the Green Web Foundation API.
* @param {array} domains - An array of domains to check.
* @param {string[]} domains - An array of domains to check.
* @param {string} userAgentIdentifier - Optional. The app, site, or organisation that is making the request.
* @returns {array} - An array of domains that are hosted by a green web host.
* @returns {Promise<string[]>} - An array of domains that are hosted by a green web host.
*/

async function checkDomainsAgainstAPI(domains, userAgentIdentifier) {
Expand All @@ -61,7 +61,7 @@ async function checkDomainsAgainstAPI(domains, userAgentIdentifier) {
/**
* Extract the green domains from the results of a green check.
* @param {object} greenResults - The results of a green check.
* @returns {array} - An array of domains that are hosted by a green web host.
* @returns {string[]} - An array of domains that are hosted by a green web host.
*/
function greenDomainsFromResults(greenResults) {
const entries = Object.entries(greenResults);
Expand Down
4 changes: 2 additions & 2 deletions src/hosting.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import hostingAPI from "./hosting-api.js";

/**
* Check if a domain is hosted by a green web host.
* @param {string|array} domain - The domain to check, or an array of domains to be checked.
* @param {string | string[]} domain - The domain to check, or an array of domains to be checked.
* @param {string} userAgentIdentifier - Optional. The app, site, or organisation that is making the request.
* @returns {boolean|array} - A boolean if a string was provided, or an array of booleans if an array of domains was provided.
* @returns {Promise<boolean | string[]>} - A boolean if a string was provided, or an array of strings if an array of domains was provided.
*/
function check(domain, userAgentIdentifier) {
return hostingAPI.check(domain, userAgentIdentifier);
Expand Down
10 changes: 10 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"extends": "@tsconfig/strictest/tsconfig.json",
"include": ["src/**/*"],
"compilerOptions": {
"noEmit": true,
"strict": true,
"allowJs": true,
"checkJs": true,
}
}

0 comments on commit 925510e

Please sign in to comment.