mirror of
https://github.com/bvanroll/yahoo-thing.git
synced 2025-08-29 12:02:48 +00:00
euh
This commit is contained in:
21
node_modules/repeat-element/LICENSE
generated
vendored
Normal file
21
node_modules/repeat-element/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015-present, Jon Schlinkert.
|
||||
|
||||
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.
|
99
node_modules/repeat-element/README.md
generated
vendored
Normal file
99
node_modules/repeat-element/README.md
generated
vendored
Normal file
@@ -0,0 +1,99 @@
|
||||
# repeat-element [](https://www.npmjs.com/package/repeat-element) [](https://npmjs.org/package/repeat-element) [](https://npmjs.org/package/repeat-element) [](https://travis-ci.org/jonschlinkert/repeat-element)
|
||||
|
||||
> Create an array by repeating the given value n times.
|
||||
|
||||
Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
|
||||
|
||||
## Install
|
||||
|
||||
Install with [npm](https://www.npmjs.com/):
|
||||
|
||||
```sh
|
||||
$ npm install --save repeat-element
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
const repeat = require('repeat-element');
|
||||
|
||||
repeat('a', 5);
|
||||
//=> ['a', 'a', 'a', 'a', 'a']
|
||||
|
||||
repeat('a', 1);
|
||||
//=> ['a']
|
||||
|
||||
repeat('a', 0);
|
||||
//=> []
|
||||
|
||||
repeat(null, 5)
|
||||
//» [ null, null, null, null, null ]
|
||||
|
||||
repeat({some: 'object'}, 5)
|
||||
//» [ { some: 'object' },
|
||||
// { some: 'object' },
|
||||
// { some: 'object' },
|
||||
// { some: 'object' },
|
||||
// { some: 'object' } ]
|
||||
|
||||
repeat(5, 5)
|
||||
//» [ 5, 5, 5, 5, 5 ]
|
||||
```
|
||||
|
||||
## About
|
||||
|
||||
<details>
|
||||
<summary><strong>Contributing</strong></summary>
|
||||
|
||||
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
|
||||
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary><strong>Running Tests</strong></summary>
|
||||
|
||||
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
|
||||
|
||||
```sh
|
||||
$ npm install && npm test
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary><strong>Building docs</strong></summary>
|
||||
|
||||
_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
|
||||
|
||||
To generate the readme, run the following command:
|
||||
|
||||
```sh
|
||||
$ npm install -g verbose/verb#dev verb-generate-readme && verb
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
### Contributors
|
||||
|
||||
| **Commits** | **Contributor** |
|
||||
| --- | --- |
|
||||
| 17 | [jonschlinkert](https://github.com/jonschlinkert) |
|
||||
| 3 | [LinusU](https://github.com/LinusU) |
|
||||
| 1 | [architectcodes](https://github.com/architectcodes) |
|
||||
|
||||
### Author
|
||||
|
||||
**Jon Schlinkert**
|
||||
|
||||
* [GitHub Profile](https://github.com/jonschlinkert)
|
||||
* [Twitter Profile](https://twitter.com/jonschlinkert)
|
||||
* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)
|
||||
|
||||
### License
|
||||
|
||||
Copyright © 2018, [Jon Schlinkert](https://github.com/jonschlinkert).
|
||||
Released under the [MIT License](LICENSE).
|
||||
|
||||
***
|
||||
|
||||
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on August 19, 2018._
|
18
node_modules/repeat-element/index.js
generated
vendored
Normal file
18
node_modules/repeat-element/index.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
/*!
|
||||
* repeat-element <https://github.com/jonschlinkert/repeat-element>
|
||||
*
|
||||
* Copyright (c) 2015-present, Jon Schlinkert.
|
||||
* Licensed under the MIT license.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
module.exports = function repeat(ele, num) {
|
||||
var arr = new Array(num);
|
||||
|
||||
for (var i = 0; i < num; i++) {
|
||||
arr[i] = ele;
|
||||
}
|
||||
|
||||
return arr;
|
||||
};
|
112
node_modules/repeat-element/package.json
generated
vendored
Normal file
112
node_modules/repeat-element/package.json
generated
vendored
Normal file
@@ -0,0 +1,112 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"repeat-element@^1.1.2",
|
||||
"/home/beppe/Github/yahooApi/node_modules/braces"
|
||||
]
|
||||
],
|
||||
"_from": "repeat-element@>=1.1.2 <2.0.0",
|
||||
"_id": "repeat-element@1.1.3",
|
||||
"_inCache": true,
|
||||
"_installable": true,
|
||||
"_location": "/repeat-element",
|
||||
"_nodeVersion": "10.0.0",
|
||||
"_npmOperationalInternal": {
|
||||
"host": "s3://npm-registry-packages",
|
||||
"tmp": "tmp/repeat-element_1.1.3_1534692630389_0.5249467379316295"
|
||||
},
|
||||
"_npmUser": {
|
||||
"email": "github@sellside.com",
|
||||
"name": "jonschlinkert"
|
||||
},
|
||||
"_npmVersion": "6.4.0",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"name": "repeat-element",
|
||||
"raw": "repeat-element@^1.1.2",
|
||||
"rawSpec": "^1.1.2",
|
||||
"scope": null,
|
||||
"spec": ">=1.1.2 <2.0.0",
|
||||
"type": "range"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/braces"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz",
|
||||
"_shasum": "782e0d825c0c5a3bb39731f84efee6b742e6b1ce",
|
||||
"_shrinkwrap": null,
|
||||
"_spec": "repeat-element@^1.1.2",
|
||||
"_where": "/home/beppe/Github/yahooApi/node_modules/braces",
|
||||
"author": {
|
||||
"name": "Jon Schlinkert",
|
||||
"url": "https://github.com/jonschlinkert"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/jonschlinkert/repeat-element/issues"
|
||||
},
|
||||
"dependencies": {},
|
||||
"description": "Create an array by repeating the given value n times.",
|
||||
"devDependencies": {
|
||||
"benchmarked": "^2.0.0",
|
||||
"chalk": "^2.4.1",
|
||||
"glob": "^7.1.2",
|
||||
"gulp-format-md": "^1.0.0",
|
||||
"minimist": "^1.2.0",
|
||||
"mocha": "^3.5.3"
|
||||
},
|
||||
"directories": {},
|
||||
"dist": {
|
||||
"fileCount": 4,
|
||||
"integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==",
|
||||
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbeY0WCRA9TVsSAnZWagAA9+8P/1uuLJ5jSetjPW5fdV4L\nvxHfZDwhxYdhTFCDvxFRTtXJrZRf0mI+ET5WsuAHSi/v+e4A0/qOZMCq1ggs\nyAeONQq6ChtiYaingdb9x18J4ULeSaeXF4W01n0tfb56LeLcUS1v+4kn99uQ\nfDdh+iwqBPxs/KmDhjR6Ihy9OoVhj3XMr4pElL3noSsnGyNUUobTxmEGUN4r\n9VXRBa90acEjPzBw9H6H0H9kmWEH3YMgZ4kvGUV/kICkZJDfbP/4z3VBj+kQ\nfLHV/emGFCkK19wf3GpgCCYstUyPy3QLWc5htSo011mlZYu2YK3zLlFPxWpR\nf/Doxn0VNluyHOKae0DrfKqfErSx8qYw8F3d3gbO7a26FHljD8wSG5WXooCl\nUiH7YMmZ6nwbKWlFh1XfyYXzDX/Na01mcZ9MzPycwJbAT6bWCPb6clh+uoIw\n9fd7Dqe7SrPWL7e1oA4qIzcgoVSsrkSGkwoXUxiUsklVXxdpUd+MPic4xdhi\nVmVl1b4Zlgd2wST+8HwKf57Ug+G8M4R3r2iu4y8yZL8pb3gMVSkgF+TgOYuw\nCM1HbPnqafmlck/Vtm7po18aUFc55jMxKQLe7eBtlLYc8h/HhD9um1THRKhm\njMsOslwPB4Y6G7nvm2wx8dLQl0PFG9astOg81ddE1o+HjgcxOwbUEAb/oqzZ\ngHyf\r\n=mFVv\r\n-----END PGP SIGNATURE-----\r\n",
|
||||
"shasum": "782e0d825c0c5a3bb39731f84efee6b742e6b1ce",
|
||||
"tarball": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz",
|
||||
"unpackedSize": 5319
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"gitHead": "32af174b4218263952a77d881f37d6e545b7cfd0",
|
||||
"homepage": "https://github.com/jonschlinkert/repeat-element",
|
||||
"keywords": [
|
||||
"array",
|
||||
"element",
|
||||
"repeat",
|
||||
"string"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "jonschlinkert",
|
||||
"email": "github@sellside.com"
|
||||
}
|
||||
],
|
||||
"name": "repeat-element",
|
||||
"optionalDependencies": {},
|
||||
"readme": "ERROR: No README data found!",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/jonschlinkert/repeat-element.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"verb": {
|
||||
"layout": "default",
|
||||
"lint": {
|
||||
"reflinks": true
|
||||
},
|
||||
"plugins": [
|
||||
"gulp-format-md"
|
||||
],
|
||||
"tasks": [
|
||||
"readme"
|
||||
],
|
||||
"toc": false
|
||||
},
|
||||
"version": "1.1.3"
|
||||
}
|
Reference in New Issue
Block a user