node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

31
server/node_modules/lunr/perf/vector_perf.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
suite('lunr.Vector', function () {
var index, val
var v1 = new lunr.Vector,
v2 = new lunr.Vector
for (var i = 0; i < 1000; i++) {
index = Math.floor(i + Math.random() * 100)
val = Math.random() * 100
v1.insert(i, val)
}
for (var i = 0; i < 1000; i++) {
index = Math.floor(i + Math.random() * 100)
val = Math.random() * 100
v2.insert(i, val)
}
this.add('magnitude', function () {
v1.magnitude()
})
this.add('dot', function () {
v1.dot(v2)
})
this.add('similarity', function () {
v1.similarity(v2)
})
})