1.0.1 • Published 5 years ago

check-url-type v1.0.1

Weekly downloads
12
License
Apache-2.0
Repository
github
Last release
5 years ago

Check Url Type

npm.io

It's a pure javascript library for checking url content-types and so on. It is also a node.js module. Check is url an image, an html file, etc.

Installation

use npm

$ npm i check-url-type

or include this in your html

<script src="https://cdn.jsdelivr.net/npm/check-url-type/index.js"></script>

Usage

//in node.js:
const check_url_type = require('check-url-type');
var type = check_url_type.get_type('url');

//in browser:
var type = check_url_type.get_type('url');