summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/arrify/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'bin/wiki/ImportarDesdeURL/node_modules/arrify/readme.md')
-rw-r--r--bin/wiki/ImportarDesdeURL/node_modules/arrify/readme.md36
1 files changed, 36 insertions, 0 deletions
diff --git a/bin/wiki/ImportarDesdeURL/node_modules/arrify/readme.md b/bin/wiki/ImportarDesdeURL/node_modules/arrify/readme.md
new file mode 100644
index 00000000..183d0757
--- /dev/null
+++ b/bin/wiki/ImportarDesdeURL/node_modules/arrify/readme.md
@@ -0,0 +1,36 @@
+# 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)