check-url-type
v1.0.1
Published
A module for checking the content-type of URLs. e.g. Check if it is an image or an html file.
Downloads
244
Maintainers
Readme
Check Url Type
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');