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
sed -i -E "s/$ESCAPED@$VERSION-deno/$ESCAPED@deno/g" README.md
727
+
728
+
perl -0777 -i -pe "s/\`\`\`javascript\nimport\s+([a-zA-Z0-9_]+)\s+from\s*'([^']+)';\n\`\`\`/\`\`\`javascript\nimport \1 from '\2';\n\`\`\`\n\The previous example will load the latest bundled code from the deno branch. Alternatively, you may load a specific version by loading the file from one of the \[tagged bundles\]\(https:\/\/github.com\/$ESCAPED\/tags\). For example,\n\n\`\`\`javascript\nimport \1 from 'https:\/\/cdn\.jsdelivr\.net\/gh\/$ESCAPED\@$VERSION-deno\/mod\.js';\n\`\`\`/" README.md
sed -i -E "s/$ESCAPED@$VERSION-umd/$ESCAPED@umd/g" README.md
741
+
742
+
perl -0777 -i -pe "s/\`\`\`javascript\n([a-zA-Z0-9_]+)\s+=\s*require\(\s*'([^']+)'\s*\)\n\`\`\`/\`\`\`javascript\n\1 = require\( '\2' \)\n\`\`\`\n\The previous example will load the latest bundled code from the umd branch. Alternatively, you may load a specific version by loading the file from one of the \[tagged bundles\]\(https:\/\/github.com\/$ESCAPED\/tags\). For example,\n\n\`\`\`javascript\n\1 = require\( 'https:\/\/cdn\.jsdelivr\.net\/gh\/$ESCAPED\@$VERSION-umd\/browser\.js' \)\n\`\`\`/" README.md
sed -i -E "s/$ESCAPED@$VERSION-esm/$ESCAPED@esm/g" README.md
755
+
756
+
perl -0777 -i -pe "s/\`\`\`javascript\nimport\s+([a-zA-Z0-9_]+)\s+from\s*'([^']+)';\n\`\`\`/\`\`\`javascript\nimport \1 from '\2';\n\`\`\`\n\The previous example will load the latest bundled code from the esm branch. Alternatively, you may load a specific version by loading the file from one of the \[tagged bundles\]\(https:\/\/github.com\/$ESCAPED\/tags\). For example,\n\n\`\`\`javascript\nimport \1 from 'https:\/\/cdn\.jsdelivr\.net\/gh\/$ESCAPED\@$VERSION-esm\/index\.mjs';\n\`\`\`/" README.md
Copy file name to clipboardExpand all lines: README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,7 @@ var o = ns;
73
73
- <spanclass="signature">[`isDataType( value )`][@stdlib/ndarray/base/assert/is-data-type]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported ndarray data type.</span>
74
74
- <spanclass="signature">[`isIndexMode( value )`][@stdlib/ndarray/base/assert/is-index-mode]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported ndarray index mode.</span>
75
75
- <spanclass="signature">[`isOrder( value )`][@stdlib/ndarray/base/assert/is-order]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is an ndarray order.</span>
76
+
- <spanclass="signature">[`isReadOnly( arr )`][@stdlib/ndarray/base/assert/is-read-only]</span><spanclass="delimiter">: </span><spanclass="description">test if an ndarray is **read-only**.</span>
76
77
- <spanclass="signature">[`isRowMajorContiguous( shape, strides, offset )`][@stdlib/ndarray/base/assert/is-row-major-contiguous]</span><spanclass="delimiter">: </span><spanclass="description">determine if an array is row-major contiguous.</span>
77
78
- <spanclass="signature">[`isRowMajor( strides )`][@stdlib/ndarray/base/assert/is-row-major]</span><spanclass="delimiter">: </span><spanclass="description">given a stride array, determine whether an array is row-major.</span>
78
79
- <spanclass="signature">[`isSafeDataTypeCast( from, to )`][@stdlib/ndarray/base/assert/is-safe-data-type-cast]</span><spanclass="delimiter">: </span><spanclass="description">determine whether an ndarray data type can be safely cast to another ndarray data type.</span>
0 commit comments