X-Git-Url: https://git.ladys.computer/Pisces/blobdiff_plain/e8d0d3ab4f8a844e15873345c0564929c80fdb74..6e6d4e3261c1c943fe44fa9e381bcf8bf1441fd6:/collection.js?ds=inline 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. *