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/assert/README.md
+9
Original file line number
Diff line number
Diff line change
@@ -88,6 +88,7 @@ Many of the assertion utilities have corresponding packages that test whether ar
88
88
89
89
- <spanclass="signature">[`isArrayArray( value )`][@stdlib/assert/is-array-array]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an array of arrays.</span>
90
90
- <spanclass="signature">[`isBooleanArray( value )`][@stdlib/assert/is-boolean-array]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an array-like object of booleans.</span>
91
+
- <spanclass="signature">[`isDateObjectArray( value )`][@stdlib/assert/is-date-object-array]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an array-like object containing only Date objects.</span>
91
92
- <spanclass="signature">[`isFunctionArray( value )`][@stdlib/assert/is-function-array]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an array-like object containing only functions.</span>
92
93
- <spanclass="signature">[`isNaNArray( value )`][@stdlib/assert/is-nan-array]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an array-like object containing only NaN values.</span>
93
94
- <spanclass="signature">[`isNullArray( value )`][@stdlib/assert/is-null-array]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an array-like object containing only null values.</span>
@@ -381,6 +382,7 @@ The remaining namespace utilities are as follows:
381
382
- <spanclass="signature">[`isComposite( value )`][@stdlib/assert/is-composite]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a composite number.</span>
382
383
- <spanclass="signature">[`isConfigurablePropertyIn( value, property )`][@stdlib/assert/is-configurable-property-in]</span><spanclass="delimiter">: </span><spanclass="description">test if an object's own or inherited property is configurable.</span>
383
384
- <spanclass="signature">[`isConfigurableProperty( value, property )`][@stdlib/assert/is-configurable-property]</span><spanclass="delimiter">: </span><spanclass="description">test if an object's own property is configurable.</span>
385
+
- <spanclass="signature">[`isCurrentYear( value )`][@stdlib/assert/is-current-year]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is the current year.</span>
384
386
- <spanclass="signature">[`isDataPropertyIn( value, property )`][@stdlib/assert/is-data-property-in]</span><spanclass="delimiter">: </span><spanclass="description">test if an object's own or inherited property has a data descriptor.</span>
385
387
- <spanclass="signature">[`isDataProperty( value, property )`][@stdlib/assert/is-data-property]</span><spanclass="delimiter">: </span><spanclass="description">test if an object's own property has a data descriptor.</span>
386
388
- <spanclass="signature">[`isDataView( value )`][@stdlib/assert/is-dataview]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a DataView.</span>
@@ -445,6 +447,7 @@ The remaining namespace utilities are as follows:
445
447
- <spanclass="signature">[`isSameType( a, b )`][@stdlib/assert/is-same-type]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments have the same type.</span>
446
448
- <spanclass="signature">[`isSameValueZero( a, b )`][@stdlib/assert/is-same-value-zero]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are the same value.</span>
447
449
- <spanclass="signature">[`isSameValue( a, b )`][@stdlib/assert/is-same-value]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are the same value.</span>
450
+
- <spanclass="signature">[`isSemVer( value )`][@stdlib/assert/is-semver]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a semantic version string.</span>
448
451
- <spanclass="signature">[`isStrictEqual( a, b )`][@stdlib/assert/is-strict-equal]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are strictly equal.</span>
449
452
- <spanclass="signature">[`isTruthy( value )`][@stdlib/assert/is-truthy]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is truthy.</span>
450
453
- <spanclass="signature">[`isUNCPath( value )`][@stdlib/assert/is-unc-path]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a UNC path.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/buffer/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -50,8 +50,8 @@ The namespace contains the following:
50
50
- <spanclass="signature">[`arraybuffer2buffer( buf[, byteOffset[, length]] )`][@stdlib/buffer/from-arraybuffer]</span><spanclass="delimiter">: </span><spanclass="description">allocate a buffer from an ArrayBuffer.</span>
51
51
- <spanclass="signature">[`copyBuffer( buffer )`][@stdlib/buffer/from-buffer]</span><spanclass="delimiter">: </span><spanclass="description">copy buffer data to a new `Buffer` instance.</span>
52
52
- <spanclass="signature">[`string2buffer( str[, encoding] )`][@stdlib/buffer/from-string]</span><spanclass="delimiter">: </span><spanclass="description">allocate a buffer containing a provided string.</span>
53
-
- <spanclass="signature">[`reviver( key, value )`][@stdlib/buffer/reviver]</span><spanclass="delimiter">: </span><spanclass="description">revive a JSON-serialized Buffer.</span>
54
-
- <spanclass="signature">[`toJSON( buffer )`][@stdlib/buffer/to-json]</span><spanclass="delimiter">: </span><spanclass="description">return a JSON representation of a Buffer.</span>
53
+
- <spanclass="signature">[`reviveBuffer( key, value )`][@stdlib/buffer/reviver]</span><spanclass="delimiter">: </span><spanclass="description">revive a JSON-serialized Buffer.</span>
54
+
- <spanclass="signature">[`buffer2json( buffer )`][@stdlib/buffer/to-json]</span><spanclass="delimiter">: </span><spanclass="description">return a JSON representation of a Buffer.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/regexp/README.md
+10-1
Original file line number
Diff line number
Diff line change
@@ -61,9 +61,12 @@ The following regular expressions are currently exported:
61
61
- <spanclass="signature">[`reFilenamePosix()`][@stdlib/regexp/filename-posix]</span><spanclass="delimiter">: </span><spanclass="description">regular expression to split a POSIX filename.</span>
62
62
- <spanclass="signature">[`reFilenameWindows()`][@stdlib/regexp/filename-windows]</span><spanclass="delimiter">: </span><spanclass="description">regular expression to split a Windows filename.</span>
63
63
- <spanclass="signature">[`reFilename( [platform] )`][@stdlib/regexp/filename]</span><spanclass="delimiter">: </span><spanclass="description">regular expression to split a filename.</span>
64
-
- <spanclass="signature">[`reFunctionName`][@stdlib/regexp/function-name]</span><spanclass="delimiter">: </span><spanclass="description">regular expression to capture a function name.</span>
64
+
- <spanclass="signature">[`reFunctionName()`][@stdlib/regexp/function-name]</span><spanclass="delimiter">: </span><spanclass="description">regular expression to capture a function name.</span>
65
65
- <spanclass="signature">[`reNativeFunction()`][@stdlib/regexp/native-function]</span><spanclass="delimiter">: </span><spanclass="description">regular expression to match a native function.</span>
66
66
- <spanclass="signature">[`reRegExp()`][@stdlib/regexp/regexp]</span><spanclass="delimiter">: </span><spanclass="description">regular expression to parse a regular expression string.</span>
67
+
- <spanclass="signature">[`reviveRegExp( key, value )`][@stdlib/regexp/reviver]</span><spanclass="delimiter">: </span><spanclass="description">revive a JSON-serialized regular expression.</span>
68
+
- <spanclass="signature">[`reSemVer()`][@stdlib/regexp/semver]</span><spanclass="delimiter">: </span><spanclass="description">regular expression to match a semantic version string.</span>
69
+
- <spanclass="signature">[`regexp2json( regexp )`][@stdlib/regexp/to-json]</span><spanclass="delimiter">: </span><spanclass="description">return a JSON representation of a regular expression.</span>
67
70
- <spanclass="signature">[`reUncPath()`][@stdlib/regexp/unc-path]</span><spanclass="delimiter">: </span><spanclass="description">regular expression to parse a UNC path.</span>
68
71
- <spanclass="signature">[`reUtf16SurrogatePair()`][@stdlib/regexp/utf16-surrogate-pair]</span><spanclass="delimiter">: </span><spanclass="description">regular expression to match a UTF-16 surrogate pair.</span>
69
72
- <spanclass="signature">[`reUtf16UnpairedSurrogate()`][@stdlib/regexp/utf16-unpaired-surrogate]</span><spanclass="delimiter">: </span><spanclass="description">regular expression to match an unpaired UTF-16 surrogate.</span>
0 commit comments