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

just-carousel

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

just-carousel - npm Package Compare versions

Comparing version 0.1.2 to 0.1.4

56

index.js

@@ -436,54 +436,4 @@ /* global module, window, document */

//
// var symbol = 0;
// var counter = 1;
// var stringMain = '';
//
// function rle1(str) {
// var s = str;
//
// for (var i = 0; i < s.length; i++) {
// if (s[i] == symbol) {
// counter++;
// } else {
// if (symbol != 0) {
// stringMain += symbol;
// }
//
// if (counter > 1) {
// stringMain += counter
// }
//
// symbol = s[i];
// counter = 1;
//
// if (symbol === 'B') {
// console.log(counter)
// }
// }
// }
//
// return stringMain;
// }
//
// rle1('AABBCC'); // A4B3C2XYZD4E3F3A6B28
//
// function rle (string) {
// var s = string;
// var abc;
// var xx = 0;
// var result = '';
//
// for (var i = 0; i < s.length; i++) {
// if (s[i] === abc) {
// xx ++;
// } else {
// result += abc;
// if (xx > 0) {
//
// }
// abc = s[i];
// xx = 0;
// }
// }
// }
if (typeof exports === 'object') {
module.exports = JustCarousel;
}

2

package.json
{
"name": "just-carousel",
"version": "0.1.2",
"version": "0.1.4",
"description": "Just an 1-item-on-screen carousel that works naturally like an iOS/android desktops and nothing else.",

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

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