Fix bin/publish: copy docs.dist from project root

Fix bin/publish: use correct .env path for rspade_system
Fix bin/publish script: prevent grep exit code 1 from terminating script

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-10-21 02:08:33 +00:00
commit f6fac6c4bc
79758 changed files with 10547827 additions and 0 deletions

53
node_modules/collect.js/docs/api/get.md generated vendored Executable file
View File

@@ -0,0 +1,53 @@
# `get()`
The get method returns the item at a given key or index. If the key or index does not exist, `null` is returned:
```js
const collection = collect({
firstname: 'Mohamed',
lastname: 'Salah',
});
collection.get('lastname');
// Salah
collection.get('middlename');
// null
```
```js
const collection = collect(['a', 'b', 'c']);
collection.get(1);
// b
```
You may optionally pass a default value as the second argument:
```js
const collection = collect({
firstname: 'Mohamed',
lastname: 'Salah',
});
collection.get('middlename', 'default-value');
// default-value
```
You may even pass a callback as the default value. The result of the callback will be returned if the specified key does not exist:
```js
const collection = collect({
firstname: 'Mohamed',
lastname: 'Salah',
});
collection.get('middlename', () => 'default-value');
// default-value
```
[View source on GitHub](https://github.com/ecrmnn/collect.js/blob/master/src/methods/get.js)