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

onix-core

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

onix-core - npm Package Compare versions

Comparing version 1.6.38 to 1.6.39

4

dist/fn/date/FormatTimestamp.js

@@ -64,4 +64,4 @@ import { Intl } from '../../Intl';

timeval = 0;
var dday = Math.floor(timeval / 86400);
timeval -= dday * 86400;
var dday = Math.floor(timeval / secondsInDay);
timeval -= dday * secondsInDay;
var dhour = Math.floor(timeval / 3600);

@@ -68,0 +68,0 @@ timeval -= dhour * 3600;

{
"name": "onix-core",
"version": "1.6.38",
"version": "1.6.39",
"description": "Onix library core",

@@ -12,2 +12,3 @@ "main": "dist/index.js",

"stats": "webpack --profile --json > stats.json",
"statsp": "webpack --profile --json --mode=production > stats.json",
"test": "echo \"Error: no test specified\" && exit 1"

@@ -14,0 +15,0 @@ },

@@ -69,3 +69,3 @@ import { Intl } from '../../Intl';

if (timeval < 0) timeval = 0;
var dday = Math.floor(timeval / 86400); timeval -= dday * 86400;
var dday = Math.floor(timeval / secondsInDay); timeval -= dday * secondsInDay;
var dhour = Math.floor(timeval / 3600); timeval -= dhour * 3600;

@@ -72,0 +72,0 @@ var dmin = Math.floor(timeval / 60); timeval -= dmin * 60;

Sorry, the diff of this file is not supported yet

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