summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/is-absolute-url/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'bin/wiki/ImportarDesdeURL/node_modules/is-absolute-url/readme.md')
-rw-r--r--bin/wiki/ImportarDesdeURL/node_modules/is-absolute-url/readme.md36
1 files changed, 36 insertions, 0 deletions
diff --git a/bin/wiki/ImportarDesdeURL/node_modules/is-absolute-url/readme.md b/bin/wiki/ImportarDesdeURL/node_modules/is-absolute-url/readme.md
new file mode 100644
index 00000000..3d73f337
--- /dev/null
+++ b/bin/wiki/ImportarDesdeURL/node_modules/is-absolute-url/readme.md
@@ -0,0 +1,36 @@
+# is-absolute-url [![Build Status](https://travis-ci.org/sindresorhus/is-absolute-url.svg?branch=master)](https://travis-ci.org/sindresorhus/is-absolute-url)
+
+> Check if an URL is absolute
+
+
+## Install
+
+```
+$ npm install is-absolute-url
+```
+
+
+## Usage
+
+```js
+const isAbsoluteUrl = require('is-absolute-url');
+
+isAbsoluteUrl('https://sindresorhus.com/foo/bar');
+//=> true
+
+isAbsoluteUrl('//sindresorhus.com');
+//=> false
+
+isAbsoluteUrl('foo/bar');
+//=> false
+```
+
+
+## Related
+
+See [is-relative-url](https://github.com/sindresorhus/is-relative-url) for the inverse.
+
+
+## License
+
+MIT © [Sindre Sorhus](https://sindresorhus.com)