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

febs

Package Overview
Dependencies
Maintainers
1
Versions
206
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

febs - npm Package Compare versions

Comparing version 0.3.18 to 0.3.19

2

package.json

@@ -47,3 +47,3 @@ {

"name": "febs",
"version": "0.3.18"
"version": "0.3.19"
}

@@ -238,6 +238,6 @@ 'use strict';

exports.getDate2 = function(strDate) {
var date = eval('new Date('
+ strDate.substr(0, 4) + ','
+ parseInt(strDate.substr(4, 2), 10)-1 + ','
+ strDate.substr(6, 2) + ')');
var date = new Date(
parseInt(strDate.substr(0, 4)),
parseInt(strDate.substr(4, 2), 10)-1,
parseInt(strDate.substr(6, 2)));
return date;

@@ -244,0 +244,0 @@ }

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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