summaryrefslogtreecommitdiffstats
path: root/node_modules/repeat-element
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/repeat-element')
-rw-r--r--node_modules/repeat-element/LICENSE21
-rw-r--r--node_modules/repeat-element/README.md99
-rw-r--r--node_modules/repeat-element/index.js18
-rw-r--r--node_modules/repeat-element/package.json84
4 files changed, 0 insertions, 222 deletions
diff --git a/node_modules/repeat-element/LICENSE b/node_modules/repeat-element/LICENSE
deleted file mode 100644
index 7cccaf9..0000000
--- a/node_modules/repeat-element/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-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.
diff --git a/node_modules/repeat-element/README.md b/node_modules/repeat-element/README.md
deleted file mode 100644
index 6006418..0000000
--- a/node_modules/repeat-element/README.md
+++ /dev/null
@@ -1,99 +0,0 @@
-# repeat-element [![NPM version](https://img.shields.io/npm/v/repeat-element.svg?style=flat)](https://www.npmjs.com/package/repeat-element) [![NPM monthly downloads](https://img.shields.io/npm/dm/repeat-element.svg?style=flat)](https://npmjs.org/package/repeat-element) [![NPM total downloads](https://img.shields.io/npm/dt/repeat-element.svg?style=flat)](https://npmjs.org/package/repeat-element) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/repeat-element.svg?style=flat&label=Travis)](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._ \ No newline at end of file
diff --git a/node_modules/repeat-element/index.js b/node_modules/repeat-element/index.js
deleted file mode 100644
index 06a8d01..0000000
--- a/node_modules/repeat-element/index.js
+++ /dev/null
@@ -1,18 +0,0 @@
-/*!
- * 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;
-};
diff --git a/node_modules/repeat-element/package.json b/node_modules/repeat-element/package.json
deleted file mode 100644
index 8b76376..0000000
--- a/node_modules/repeat-element/package.json
+++ /dev/null
@@ -1,84 +0,0 @@
-{
- "_from": "repeat-element@^1.1.2",
- "_id": "repeat-element@1.1.3",
- "_inBundle": false,
- "_integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==",
- "_location": "/repeat-element",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "repeat-element@^1.1.2",
- "name": "repeat-element",
- "escapedName": "repeat-element",
- "rawSpec": "^1.1.2",
- "saveSpec": null,
- "fetchSpec": "^1.1.2"
- },
- "_requiredBy": [
- "/anymatch/braces",
- "/chokidar/braces",
- "/findup-sync/braces",
- "/readdirp/braces",
- "/webpack/braces"
- ],
- "_resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz",
- "_shasum": "782e0d825c0c5a3bb39731f84efee6b742e6b1ce",
- "_spec": "repeat-element@^1.1.2",
- "_where": "/home/pruss/Dev/3-minute-website/node_modules/anymatch/node_modules/braces",
- "author": {
- "name": "Jon Schlinkert",
- "url": "https://github.com/jonschlinkert"
- },
- "bugs": {
- "url": "https://github.com/jonschlinkert/repeat-element/issues"
- },
- "bundleDependencies": false,
- "deprecated": false,
- "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"
- },
- "engines": {
- "node": ">=0.10.0"
- },
- "files": [
- "index.js"
- ],
- "homepage": "https://github.com/jonschlinkert/repeat-element",
- "keywords": [
- "array",
- "element",
- "repeat",
- "string"
- ],
- "license": "MIT",
- "main": "index.js",
- "name": "repeat-element",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/jonschlinkert/repeat-element.git"
- },
- "scripts": {
- "test": "mocha"
- },
- "verb": {
- "toc": false,
- "layout": "default",
- "tasks": [
- "readme"
- ],
- "plugins": [
- "gulp-format-md"
- ],
- "lint": {
- "reflinks": true
- }
- },
- "version": "1.1.3"
-}