You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/_tools/eslint/rules/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -129,7 +129,7 @@ var eslint = rules;
129
129
- <spanclass="signature">[`jsdoc-link-title-style`][@stdlib/_tools/eslint/rules/jsdoc-link-title-style]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule to enforce that link and definition titles use specified quotes in JSDoc descriptions.</span>
130
130
- <spanclass="signature">[`jsdoc-list-item-bullet-indent`][@stdlib/_tools/eslint/rules/jsdoc-list-item-bullet-indent]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule to prevent unnecessary indentation of Markdown list item bullets in JSDoc descriptions.</span>
131
131
- <spanclass="signature">[`jsdoc-list-item-content-indent`][@stdlib/_tools/eslint/rules/jsdoc-list-item-content-indent]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule to prevent mixed indentation in Markdown list item content in JSDoc descriptions.</span>
132
-
- <spanclass="signature">[`jsdoc-list-item-indent`][@stdlib/_tools/eslint/rules/jsdoc-list-item-indent]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule to spacing between a list item’s bullet and its content to violate a given style in JSDoc descriptions.</span>
132
+
- <spanclass="signature">[`jsdoc-list-item-indent`][@stdlib/_tools/eslint/rules/jsdoc-list-item-indent]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule to enforce spacing between a list item’s bullet and its content to match a given style in JSDoc descriptions.</span>
133
133
- <spanclass="signature">[`jsdoc-list-item-spacing`][@stdlib/_tools/eslint/rules/jsdoc-list-item-spacing]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule to enforce consistent list item spacing in JSDoc descriptions.</span>
134
134
- <spanclass="signature">[`jsdoc-main-export`][@stdlib/_tools/eslint/rules/jsdoc-main-export]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule to enforce that the JSDoc comment documenting a package's main export adheres to `stdlib` conventions and contains the correct package path.</span>
135
135
- <spanclass="signature">[`jsdoc-markdown-remark`][@stdlib/_tools/eslint/rules/jsdoc-markdown-remark]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule to lint JSDoc descriptions using remark.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/assert/README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -491,6 +491,8 @@ The remaining namespace utilities are as follows:
491
491
- <spanclass="signature">[`isSnakecase( value )`][@stdlib/assert/is-snakecase]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a string in snake case.</span>
492
492
- <spanclass="signature">[`isStartcase( value )`][@stdlib/assert/is-startcase]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a startcase string.</span>
493
493
- <spanclass="signature">[`isStrictEqual( a, b )`][@stdlib/assert/is-strict-equal]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are strictly equal.</span>
494
+
- <spanclass="signature">[`isStructConstructorLike( value )`][@stdlib/assert/is-struct-constructor-like]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is struct constructor-like.</span>
495
+
- <spanclass="signature">[`isStruct( value )`][@stdlib/assert/is-struct]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a `struct` instance.</span>
494
496
- <spanclass="signature">[`isTruthy( value )`][@stdlib/assert/is-truthy]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is truthy.</span>
495
497
- <spanclass="signature">[`isUNCPath( value )`][@stdlib/assert/is-unc-path]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a UNC path.</span>
496
498
- <spanclass="signature">[`isUndefinedOrNull( value )`][@stdlib/assert/is-undefined-or-null]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is undefined or null.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/README.md
-24Lines changed: 0 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,14 +61,6 @@ The namespace contains the following statistical functions:
61
61
- <spanclass="signature">[`cumaxabs( N, x, strideX, y, strideY )`][@stdlib/stats/base/cumaxabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the cumulative maximum absolute value of a strided array.</span>
62
62
- <spanclass="signature">[`cumin( N, x, strideX, y, strideY )`][@stdlib/stats/base/cumin]</span><spanclass="delimiter">: </span><spanclass="description">calculate the cumulative minimum of a strided array.</span>
63
63
- <spanclass="signature">[`cuminabs( N, x, strideX, y, strideY )`][@stdlib/stats/base/cuminabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the cumulative minimum absolute value of a strided array.</span>
64
-
- <spanclass="signature">[`dmeanstdev( N, correction, x, strideX, out, strideOut )`][@stdlib/stats/strided/dmeanstdev]</span><spanclass="delimiter">: </span><spanclass="description">calculate the mean and standard deviation of a double-precision floating-point strided array.</span>
65
-
- <spanclass="signature">[`dmeanstdevpn( N, correction, x, strideX, out, strideOut )`][@stdlib/stats/strided/dmeanstdevpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the mean and standard deviation of a double-precision floating-point strided array using a two-pass algorithm.</span>
66
-
- <spanclass="signature">[`dmeanvar( N, correction, x, strideX, out, strideOut )`][@stdlib/stats/strided/dmeanvar]</span><spanclass="delimiter">: </span><spanclass="description">calculate the mean and variance of a double-precision floating-point strided array.</span>
67
-
- <spanclass="signature">[`dmeanvarpn( N, correction, x, strideX, out, strideOut )`][@stdlib/stats/strided/dmeanvarpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the mean and variance of a double-precision floating-point strided array using a two-pass algorithm.</span>
68
-
- <spanclass="signature">[`nanmean( N, x, strideX )`][@stdlib/stats/strided/nanmean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array, ignoring `NaN` values.</span>
69
-
- <spanclass="signature">[`nanmeanors( N, x, strideX )`][@stdlib/stats/strided/nanmeanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array, ignoring `NaN` values and using ordinary recursive summation.</span>
70
-
- <spanclass="signature">[`nanmeanpn( N, x, strideX )`][@stdlib/stats/strided/nanmeanpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array, ignoring `NaN` values and using a two-pass error correction algorithm.</span>
71
-
- <spanclass="signature">[`nanmeanwd( N, x, strideX )`][@stdlib/stats/strided/nanmeanwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array, ignoring `NaN` values and using Welford's algorithm.</span>
72
64
- <spanclass="signature">[`nanmskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/nanmskmax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a strided array according to a mask, ignoring `NaN` values.</span>
73
65
- <spanclass="signature">[`nanmskmin( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/nanmskmin]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a strided array according to a mask, ignoring `NaN` values.</span>
74
66
- <spanclass="signature">[`nanmskrange( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/nanmskrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a strided array according to a mask, ignoring `NaN` values.</span>
0 commit comments