Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
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
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ desc_link_text=${DESC_LINK_TEXT:-'addition'}
# Define a list of keywords:
if [[ -z "${KEYWORDS:-}" ]]; then
keywords=(
"stdmath"
"mathematics"
"math"
"add"
"sum"
"addition"
"arithmetic"
"summation"
"stdmath"
"mathematics"
"math"
"add"
"sum"
"addition"
"arithmetic"
"summation"
)
else
IFS=','; read -ra keywords <<< "${KEYWORDS}"; IFS=' ';
Expand All @@ -90,14 +90,14 @@ rand_max=${RAND_MAX:-'10.0'}
# Define a list of values for first input array:
if [[ -z "${X_VALUES_LEN_8:-}" ]]; then
x_values_len_8=(
'1.0'
'2.0'
'3.0'
'4.0'
'5.0'
'6.0'
'7.0'
'8.0'
'1.0'
'2.0'
'3.0'
'4.0'
'5.0'
'6.0'
'7.0'
'8.0'
)
else
IFS=','; read -ra x_values_len_8 <<< "${X_VALUES_LEN_8}"; IFS=' ';
Expand All @@ -106,14 +106,14 @@ fi
# Define a list of values for second input array:
if [[ -z "${Y_VALUES_LEN_8:-}" ]]; then
y_values_len_8=(
'11.0'
'12.0'
'13.0'
'14.0'
'15.0'
'16.0'
'17.0'
'18.0'
'11.0'
'12.0'
'13.0'
'14.0'
'15.0'
'16.0'
'17.0'
'18.0'
)
else
IFS=','; read -ra y_values_len_8 <<< "${Y_VALUES_LEN_8}"; IFS=' ';
Expand Down
68 changes: 34 additions & 34 deletions lib/node_modules/@stdlib/assert/napi/is-typedarray/manifest.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
{
"options": {},
"fields": [
{
"field": "src",
"resolve": true,
"relative": true
},
{
"field": "include",
"resolve": true,
"relative": true
},
{
"field": "libraries",
"resolve": false,
"relative": false
},
{
"field": "libpath",
"resolve": true,
"relative": false
}
],
"confs": [
{
"src": [
"options": {},
"fields": [
{
"field": "src",
"resolve": true,
"relative": true
},
{
"field": "include",
"resolve": true,
"relative": true
},
{
"field": "libraries",
"resolve": false,
"relative": false
},
{
"field": "libpath",
"resolve": true,
"relative": false
}
],
"confs": [
{
"src": [
"./src/main.c"
],
"include": [
"./include"
],
"libraries": [],
"libpath": [],
"dependencies": [
"include": [
"./include"
],
"libraries": [],
"libpath": [],
"dependencies": [
"@stdlib/assert/napi/status-ok"
]
}
]
}
]
}
Loading