Comparing version 2.7.3 to 2.7.4
@@ -1179,4 +1179,7 @@ (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.ytSearch = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){ | ||
var s = Math.floor(ms / MS_SECOND) % 60; | ||
if (h) t += h + ':'; | ||
if (m) t += m + ':'; | ||
if (h) t += h + ':'; // pad with extra zero only if hours are set | ||
if (h && String(m).length < 2) t += '0'; | ||
t += m + ':'; // pad with extra zero | ||
if (String(s).length < 2) t += '0'; | ||
@@ -1183,0 +1186,0 @@ t += s; |
{ | ||
"name": "yt-search", | ||
"version": "2.7.3", | ||
"version": "2.7.4", | ||
"description": "search youtube", | ||
@@ -5,0 +5,0 @@ "main": "dist/yt-search.js", |
@@ -37,2 +37,5 @@ [![npm](https://img.shields.io/npm/v/yt-search.svg?maxAge=3600)](https://www.npmjs.com/package/yt-search) | ||
###### try it | ||
https://runkit.com/talmobi/runkit-npm-yt-search-basic | ||
#### single video | ||
@@ -48,2 +51,5 @@ ```javascript | ||
###### try it | ||
https://runkit.com/talmobi/runkit-npm-yt-search-video | ||
#### single playlist | ||
@@ -73,2 +79,5 @@ ```javascript | ||
###### try it | ||
https://runkit.com/talmobi/runkit-npm-yt-search-playlist | ||
## CLI Usage (interactive) | ||
@@ -75,0 +84,0 @@ ```bash |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
47529
1047
142