From: Lady Date: Sun, 25 Sep 2022 07:52:56 +0000 (-0700) Subject: Remove irregular whitespace X-Git-Tag: 0.3.0~5 X-Git-Url: https://git.ladys.computer/Pisces/commitdiff_plain/0752ef49a10befbfc3c3cb5aa0c194ad5dddef8a Remove irregular whitespace --- diff --git a/collection.js b/collection.js index 38b048c..7319b73 100644 --- a/collection.js +++ b/collection.js @@ -35,7 +35,7 @@ export const { * numeric index string; otherwise, returns undefined. * * There is no clamping of the numeric index, but note that numbers - * above 2^53 − 1 are not safe nor valid integer indices. + * above 2^53 − 1 are not safe nor valid integer indices. */ export const canonicalNumericIndexString = ($) => { if (typeof $ !== "string") { @@ -207,7 +207,7 @@ export const isArraylikeObject = ($) => { * * The definition of “collection” used by Piscēs is similar to * Ecmascript’s definition of an arraylike object, but it differs in - * a few ways :— + * a few ways :— * * - It requires the provided value to be a proper object. * diff --git a/deno.json b/deno.json index 5d63df6..548f1fe 100644 --- a/deno.json +++ b/deno.json @@ -1,8 +1,4 @@ { "fmt": { "options": { "lineWidth": 71 } }, - "lint": { - "rules": { - "exclude": ["constructor-super", "no-irregular-whitespace"] - } - } + "lint": { "rules": { "exclude": ["constructor-super"] } } } diff --git a/iri.js b/iri.js index de23d5d..47b1fb8 100644 --- a/iri.js +++ b/iri.js @@ -168,7 +168,7 @@ export const { /** * Recomposes an (L·E·)I·R·I reference from its component parts. * - * See §5.3 of R·F·C 3986. + * See §5.3 of R·F·C 3986. */ composeReference, @@ -193,7 +193,7 @@ export const { * Removes all dot segments ("." or "..") from the provided * (L·E·)I·R·I. * - * See §5.2.4 of R·F·C 3986. + * See §5.2.4 of R·F·C 3986. */ removeDotSegments, } = (() => { @@ -535,7 +535,7 @@ export const { * Returns the result of merging the provided reference path with the * provided base path. * - * See §5.2.3 of R·F·C 3986. + * See §5.2.3 of R·F·C 3986. */ export const mergePaths = (base, reference) => { const baseStr = `${base}` || "/"; @@ -592,7 +592,7 @@ export const { * Resolves the provided reference relative to the provided base * (L·E·)I·R·I. * - * See §5.2 of R·F·C 3986. + * See §5.2 of R·F·C 3986. */ export const resolveReference = (R, Base = location ?? "") => { const {