Last commit july 5th

This commit is contained in:
2024-07-05 13:46:23 +02:00
parent dad0d86e8c
commit b0e4dfbb76
24982 changed files with 2621219 additions and 413 deletions

50
spa/node_modules/objectorarray/README.md generated vendored Normal file
View File

@@ -0,0 +1,50 @@
# objectorarray
[![npm version][1]][0] [![downloads][2]][0]
Is the value an object or an array but not null or RegExp?
## Install
```
$ yarn add objectorarray
```
## Usage
```js
import objectorarray from 'objectorarray'
```
### True
All of the following return true:
```js
objectorarray({})
objectorarray([])
objectorarray(Object.create({}))
objectorarray(Object.create(Object.prototype))
objectorarray(Object.create(null))
objectorarray(new Foo)
```
### False
All of the following return false:
```js
objectorarray()
objectorarray(function () {})
objectorarray(1)
objectorarray(/foo/)
objectorarray(undefined)
objectorarray(null)
```
## License
MIT
[0]: https://npmjs.org/package/objectorarray
[1]: https://img.shields.io/npm/v/objectorarray.svg?style=flat-square
[2]: http://img.shields.io/npm/dm/objectorarray.svg?style=flat-square