aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/arrify/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/arrify/readme.md')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/arrify/readme.md36
1 files changed, 0 insertions, 36 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/arrify/readme.md b/vnfmarket/src/main/webapp/vnfmarket/node_modules/arrify/readme.md
deleted file mode 100644
index 183d0757..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/arrify/readme.md
+++ /dev/null
@@ -1,36 +0,0 @@
-# arrify [![Build Status](https://travis-ci.org/sindresorhus/arrify.svg?branch=master)](https://travis-ci.org/sindresorhus/arrify)
-
-> Convert a value to an array
-
-
-## Install
-
-```
-$ npm install --save arrify
-```
-
-
-## Usage
-
-```js
-const arrify = require('arrify');
-
-arrify('unicorn');
-//=> ['unicorn']
-
-arrify(['unicorn']);
-//=> ['unicorn']
-
-arrify(null);
-//=> []
-
-arrify(undefined);
-//=> []
-```
-
-*Supplying `null` or `undefined` results in an empty array.*
-
-
-## License
-
-MIT © [Sindre Sorhus](http://sindresorhus.com)