Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

is-video

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

is-video - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

8

index.js

@@ -11,9 +11,3 @@ 'use strict';

module.exports = function (filepath) {
var ext = path.extname(filepath).slice(1);
if (ext === '') {
return false;
}
return ext in exts;
return path.extname(filepath).slice(1).toLowerCase() in exts;
};

2

package.json
{
"name": "is-video",
"version": "1.0.0",
"version": "1.0.1",
"description": "Check if a filepath is a video file",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -28,3 +28,3 @@ # is-video [![Build Status](https://travis-ci.org/sindresorhus/is-video.svg?branch=master)](https://travis-ci.org/sindresorhus/is-video)

- [video-extensions](https://github.com/arthurvr/video-extensions) - List of video file extensions
- [video-extensions](https://github.com/sindresorhus/video-extensions) - List of video file extensions

@@ -31,0 +31,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc