Tweaked gitignore

gitignore removed all composer and npm files, so automated builds would fail
This commit is contained in:
Henry Whitaker
2020-04-12 21:24:03 +01:00
parent 698687f12d
commit ea5808047f
27863 changed files with 3399604 additions and 5 deletions

22
conf/site/node_modules/collect.js/docs/api/join.md generated vendored Normal file
View File

@@ -0,0 +1,22 @@
# `join()`
The join method joins the collection's values with a string:
```js
collect(['a', 'b', 'c']).join(', ');
// 'a, b, c'
collect(['a', 'b', 'c']).join(', ', ', and ');
// 'a, b, and c'
collect(['a', 'b']).join(', ', ' and ');
// 'a and b'
collect(['a']).join(', ', ' and ');
// 'a'
collect([]).join(', ', ' and ');
// ''
```
[View source on GitHub](https://github.com/ecrmnn/collect.js/blob/master/src/methods/join.js)