Skip to content

Commit a8552a3

Browse files
committed
🐛 with wiki
1 parent f93e10e commit a8552a3

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ xsortedArray.intersection(x, y);
8787
| [searchClosestValue] | Find index of closest value using binary search. |
8888
| | |
8989
| [merge] | Merge values from two sorted arrays. |
90-
| [rangedMerge] | Merge ranges of values from two sorted arrays. |
9190
| [mergeAll] | Merge values from sorted arrays. |
9291
| | |
9392
| [isUnique] | Examine if there are no duplicate values. |
@@ -105,14 +104,14 @@ xsortedArray.intersection(x, y);
105104

106105
## References
107106

107+
- [binarysearch - npm : Ryan Day](https://www.npmjs.com/package/binarysearch)
108108
- [binary-sorted-array - npm : Michal Iwanow](https://www.npmjs.com/package/binary-sorted-array)
109109
- [How to add region in java script file, visual studio](https://stackoverflow.com/a/51550649/1413259)
110110

111111
<br>
112112
<br>
113113

114-
115-
[![](https://img.youtube.com/vi/VYOOiIJeBOA/maxresdefault.jpg)](https://www.youtube.com/watch?v=VYOOiIJeBOA)<br>
114+
[![](https://img.youtube.com/vi/VnFLMIEZNG8/maxresdefault.jpg)](https://www.youtube.com/watch?v=VnFLMIEZNG8)<br>
116115
[![ORG](https://img.shields.io/badge/org-nodef-green?logo=Org)](https://nodef.github.io)
117116
[![Coverage Status](https://coveralls.io/repos/github/nodef/extra-sorted-array/badge.svg?branch=master)](https://coveralls.io/github/nodef/extra-sorted-array?branch=master)
118117
[![Test Coverage](https://api.codeclimate.com/v1/badges/31b3e3f490532d3bd3d3/test_coverage)](https://codeclimate.com/github/nodef/extra-sorted-array/test_coverage)

build.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ function generateWiki(ds) {
9898
for (var d of ds) {
9999
var f = `wiki/${d.name}.md`;
100100
if (!rkind.test(d.kind)) continue;
101+
if (d.location.includes('node_modules')) continue; // Skip external
101102
if (!fs.existsSync(f)) {
102103
var txt = build.wikiMarkdown(d, {owner, repo, useWiki});
103104
build.writeFileText(f, txt);

package-lock.json

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "extra-sorted-array",
3-
"version": "0.0.14",
3+
"version": "1.0.0",
44
"description": "A sorted array is a collection of values, arranged in an order.",
55
"main": "index.js",
66
"module": "index.mjs",

wiki

Submodule wiki updated from 316e2b8 to 6640c6e

0 commit comments

Comments
 (0)