Initial import with skill sheet working
This commit is contained in:
21
node_modules/is-buffer/LICENSE
generated
vendored
Normal file
21
node_modules/is-buffer/LICENSE
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) Feross Aboukhadijeh
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
54
node_modules/is-buffer/README.md
generated
vendored
Normal file
54
node_modules/is-buffer/README.md
generated
vendored
Normal file
@ -0,0 +1,54 @@
|
||||
# is-buffer [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url]
|
||||
|
||||
[travis-image]: https://img.shields.io/travis/feross/is-buffer/master.svg
|
||||
[travis-url]: https://travis-ci.org/feross/is-buffer
|
||||
[npm-image]: https://img.shields.io/npm/v/is-buffer.svg
|
||||
[npm-url]: https://npmjs.org/package/is-buffer
|
||||
[downloads-image]: https://img.shields.io/npm/dm/is-buffer.svg
|
||||
[downloads-url]: https://npmjs.org/package/is-buffer
|
||||
[standard-image]: https://img.shields.io/badge/code_style-standard-brightgreen.svg
|
||||
[standard-url]: https://standardjs.com
|
||||
|
||||
#### Determine if an object is a [`Buffer`](http://nodejs.org/api/buffer.html) (including the [browserify Buffer](https://github.com/feross/buffer))
|
||||
|
||||
[![saucelabs][saucelabs-image]][saucelabs-url]
|
||||
|
||||
[saucelabs-image]: https://saucelabs.com/browser-matrix/is-buffer.svg
|
||||
[saucelabs-url]: https://saucelabs.com/u/is-buffer
|
||||
|
||||
## Why not use `Buffer.isBuffer`?
|
||||
|
||||
This module lets you check if an object is a `Buffer` without using `Buffer.isBuffer` (which includes the whole [buffer](https://github.com/feross/buffer) module in [browserify](http://browserify.org/)).
|
||||
|
||||
It's future-proof and works in node too!
|
||||
|
||||
## install
|
||||
|
||||
```bash
|
||||
npm install is-buffer
|
||||
```
|
||||
|
||||
## usage
|
||||
|
||||
```js
|
||||
var isBuffer = require('is-buffer')
|
||||
|
||||
isBuffer(new Buffer(4)) // true
|
||||
isBuffer(Buffer.alloc(4)) //true
|
||||
|
||||
isBuffer(undefined) // false
|
||||
isBuffer(null) // false
|
||||
isBuffer('') // false
|
||||
isBuffer(true) // false
|
||||
isBuffer(false) // false
|
||||
isBuffer(0) // false
|
||||
isBuffer(1) // false
|
||||
isBuffer(1.0) // false
|
||||
isBuffer('string') // false
|
||||
isBuffer({}) // false
|
||||
isBuffer(function foo () {}) // false
|
||||
```
|
||||
|
||||
## license
|
||||
|
||||
MIT. Copyright (C) [Feross Aboukhadijeh](http://feross.org).
|
2
node_modules/is-buffer/index.d.ts
generated
vendored
Normal file
2
node_modules/is-buffer/index.d.ts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
declare function isBuffer(obj: any): boolean
|
||||
export = isBuffer
|
11
node_modules/is-buffer/index.js
generated
vendored
Normal file
11
node_modules/is-buffer/index.js
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
/*!
|
||||
* Determine if an object is a Buffer
|
||||
*
|
||||
* @author Feross Aboukhadijeh <https://feross.org>
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
module.exports = function isBuffer (obj) {
|
||||
return obj != null && obj.constructor != null &&
|
||||
typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
|
||||
}
|
65
node_modules/is-buffer/package.json
generated
vendored
Normal file
65
node_modules/is-buffer/package.json
generated
vendored
Normal file
@ -0,0 +1,65 @@
|
||||
{
|
||||
"name": "is-buffer",
|
||||
"description": "Determine if an object is a Buffer",
|
||||
"version": "2.0.5",
|
||||
"author": {
|
||||
"name": "Feross Aboukhadijeh",
|
||||
"email": "feross@feross.org",
|
||||
"url": "https://feross.org"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/feross/is-buffer/issues"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"airtap": "^3.0.0",
|
||||
"standard": "*",
|
||||
"tape": "^5.0.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"keywords": [
|
||||
"arraybuffer",
|
||||
"browser",
|
||||
"browser buffer",
|
||||
"browserify",
|
||||
"buffer",
|
||||
"buffers",
|
||||
"core buffer",
|
||||
"dataview",
|
||||
"float32array",
|
||||
"float64array",
|
||||
"int16array",
|
||||
"int32array",
|
||||
"type",
|
||||
"typed array",
|
||||
"uint32array"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/feross/is-buffer.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "standard && npm run test-node && npm run test-browser",
|
||||
"test-browser": "airtap -- test/*.js",
|
||||
"test-browser-local": "airtap --local -- test/*.js",
|
||||
"test-node": "tape test/*.js"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/feross"
|
||||
},
|
||||
{
|
||||
"type": "patreon",
|
||||
"url": "https://www.patreon.com/feross"
|
||||
},
|
||||
{
|
||||
"type": "consulting",
|
||||
"url": "https://feross.org/support"
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user