Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/help/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3718,7 +3718,7 @@ isObjectLike,"\nisObjectLike( value )\n Tests if a value is object-like.\n\n
isOdd,"\nisOdd( value )\n Tests if a value is an odd number.\n\n Parameters\n ----------\n value: any\n Value to test.\n\n Returns\n -------\n bool: boolean\n Boolean indicating whether value is an odd number.\n\n Examples\n --------\n > var bool = isOdd( 5.0 )\n true\n > bool = isOdd( new Number( 5.0 ) )\n true\n > bool = isOdd( 4.0 )\n false\n > bool = isOdd( new Number( 4.0 ) )\n false\n > bool = isOdd( -3.14 )\n false\n > bool = isOdd( null )\n false\n\nisOdd.isPrimitive( value )\n Tests if a value is a number primitive that is an odd number.\n\n Parameters\n ----------\n value: any\n Value to test.\n\n Returns\n -------\n bool: boolean\n Boolean indicating whether value is a number primitive that is an odd\n number.\n\n Examples\n --------\n > var bool = isOdd.isPrimitive( -5.0 )\n true\n > bool = isOdd.isPrimitive( new Number( -5.0 ) )\n false\n\n\nisOdd.isObject( value )\n Tests if a value is a number object that has an odd number value.\n\n Parameters\n ----------\n value: any\n Value to test.\n\n Returns\n -------\n bool: boolean\n Boolean indicating whether value is a number object that has an odd\n number value.\n\n Examples\n --------\n > var bool = isOdd.isObject( 5.0 )\n false\n > bool = isOdd.isObject( new Number( 5.0 ) )\n true\n\n See Also\n --------\n isEven\n"
isOdd.isPrimitive,"\nisOdd.isPrimitive( value )\n Tests if a value is a number primitive that is an odd number.\n\n Parameters\n ----------\n value: any\n Value to test.\n\n Returns\n -------\n bool: boolean\n Boolean indicating whether value is a number primitive that is an odd\n number.\n\n Examples\n --------\n > var bool = isOdd.isPrimitive( -5.0 )\n true\n > bool = isOdd.isPrimitive( new Number( -5.0 ) )\n false"
isOdd.isObject,"\nisOdd.isObject( value )\n Tests if a value is a number object that has an odd number value.\n\n Parameters\n ----------\n value: any\n Value to test.\n\n Returns\n -------\n bool: boolean\n Boolean indicating whether value is a number object that has an odd\n number value.\n\n Examples\n --------\n > var bool = isOdd.isObject( 5.0 )\n false\n > bool = isOdd.isObject( new Number( 5.0 ) )\n true\n\n See Also\n --------\n isEven"
isoWeeksInYear,"\nisoWeeksInYear( [year] )\n Returns the number of ISO weeks in a year according to the Gregorian\n calendar.\n\n By default, the function returns the number of ISO weeks in the current year\n (according to local time). To determine the number of ISO weeks for a\n particular year, provide either a year or a `Date` object.\n\n Parameters\n ----------\n year: integer (optional)\n Year.\n\n Returns\n -------\n out: integer\n Number of ISO weeks in a year.\n\n Examples\n --------\n > var num = isoWeeksInYear()\n <number>\n > num = isoWeeksInYear( 2015 )\n 53\n > num = isoWeeksInYear( 2017 )\n 52\n\n"
isoWeeksInYear,"\nisoWeeksInYear( [value] )\n Returns the number of ISO weeks in a year according to the Gregorian\n calendar.\n\n By default, the function returns the number of ISO weeks in the current year\n (according to local time). To determine the number of ISO weeks for a\n particular year, provide either a year or a `Date` object.\n\n The function's return value is a generalization and does **not** take into\n account inaccuracies due to daylight savings conventions, crossing\n timezones, or other complications with time and dates.\n\n Parameters\n ----------\n value: integer|Date (optional)\n Year or `Date` object.\n\n Returns\n -------\n out: integer\n Number of ISO weeks in a year.\n\n Examples\n --------\n > var num = isoWeeksInYear()\n <number>\n > num = isoWeeksInYear( 2015 )\n 53\n > num = isoWeeksInYear( 2017 )\n 52\n\n"
isPascalcase,"\nisPascalcase( value )\n Tests if a value is a string in Pascal case.\n\n Parameters\n ----------\n value: any\n Value to test.\n\n Returns\n -------\n bool: boolean\n Boolean indicating whether a value is a string in Pascal case.\n\n Examples\n --------\n > var bool = isPascalcase( 'HelloWorld' )\n true\n > bool = isPascalcase( 'hello-world' )\n false\n\n See Also\n --------\n isString"
isPersymmetricMatrix,"\nisPersymmetricMatrix( value )\n Tests if a value is a square matrix which is symmetric about its\n antidiagonal.\n\n Parameters\n ----------\n value: any\n Value to test.\n\n Returns\n -------\n bool: boolean\n Boolean indicating whether a value is a persymmetric matrix.\n\n Examples\n --------\n > var buf = [ 1, 2, 3, 1 ];\n > var sh = [ 2, 2 ];\n > var st = [ 2, 1 ];\n > var M = ndarray( 'generic', buf, sh, st, 0, 'row-major' );\n > var bool = isPersymmetricMatrix( M )\n true\n > bool = isPersymmetricMatrix( [ 1, 2, 3, 4 ] )\n false\n > bool = isPersymmetricMatrix( 3.14 )\n false\n > bool = isPersymmetricMatrix( {} )\n false\n\n See Also\n --------\n isMatrixLike, isSquareMatrix, isSymmetricMatrix\n"
isPlainObject,"\nisPlainObject( value )\n Tests if a value is a plain object.\n\n Parameters\n ----------\n value: any\n Value to test.\n\n Returns\n -------\n bool: boolean\n Boolean indicating whether value is a plain object.\n\n Examples\n --------\n > var bool = isPlainObject( {} )\n true\n > bool = isPlainObject( null )\n false\n\n See Also\n --------\n isObject\n"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/help/data/data.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3718,7 +3718,7 @@ isObjectLike,"\nisObjectLike( value:any )\n Tests if a value is object-like.\
isOdd,"\nisOdd( value:any )\n Tests if a value is an odd number.\n"
isOdd.isPrimitive,"\nisOdd.isPrimitive( value:any )\n Tests if a value is a number primitive that is an odd number.\n"
isOdd.isObject,"\nisOdd.isObject( value:any )\n Tests if a value is a number object that has an odd number value.\n"
isoWeeksInYear,"\nisoWeeksInYear( [year:integer] )\n Returns the number of ISO weeks in a year according to the Gregorian\n calendar.\n"
isoWeeksInYear,"\nisoWeeksInYear( [value:integer|Date] )\n Returns the number of ISO weeks in a year according to the Gregorian\n calendar.\n"
isPascalcase,"\nisPascalcase( value:any )\n Tests if a value is a string in Pascal case.\n"
isPersymmetricMatrix,"\nisPersymmetricMatrix( value:any )\n Tests if a value is a square matrix which is symmetric about its\n antidiagonal.\n"
isPlainObject,"\nisPlainObject( value:any )\n Tests if a value is a plain object.\n"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/info/data/data.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3797,7 +3797,7 @@ isObjectLike,"isObjectLike( value )"
isOdd,"isOdd( value )"
isOdd.isPrimitive,"isOdd.isPrimitive( value )"
isOdd.isObject,"isOdd.isObject( value )"
isoWeeksInYear,"isoWeeksInYear( [year] )"
isoWeeksInYear,"isoWeeksInYear( [value] )"
isPascalcase,"isPascalcase( value )"
isPersymmetricMatrix,"isPersymmetricMatrix( value )"
isPlainObject,"isPlainObject( value )"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/signature/data/data.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -3797,7 +3797,7 @@ isObjectLike,"isObjectLike( value:any )"
isOdd,"isOdd( value:any )"
isOdd.isPrimitive,"isOdd.isPrimitive( value:any )"
isOdd.isObject,"isOdd.isObject( value:any )"
isoWeeksInYear,"isoWeeksInYear( [year:integer] )"
isoWeeksInYear,"isoWeeksInYear( [value:integer|Date] )"
isPascalcase,"isPascalcase( value:any )"
isPersymmetricMatrix,"isPersymmetricMatrix( value:any )"
isPlainObject,"isPlainObject( value:any )"
Expand Down

Large diffs are not rendered by default.