Socket
Socket
Sign inDemoInstall

@cpany/app

Package Overview
Dependencies
208
Maintainers
1
Versions
97
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.13 to 0.1.14

dist/assets/About.b6bbfe12.js

6

package.json
{
"name": "@cpany/app",
"version": "0.1.13",
"version": "0.1.14",
"description": "CPany web app",

@@ -16,4 +16,4 @@ "keywords": [

"dependencies": {
"@cpany/compress": "0.1.13",
"@cpany/types": "0.1.13",
"@cpany/compress": "0.1.14",
"@cpany/types": "0.1.14",
"tippy.js": "^6.3.1",

@@ -20,0 +20,0 @@ "vue": "^3.2.12",

import rawHistory from '~cpany/log';
import { load } from '@cpany/compress/load';
import { FetchLog, UserDiffLog } from '@cpany/types';
import { toDay } from '@/utils';
import { DiffLog, UserDiffLog } from '@cpany/types';
import { toDay, toDate } from '@/utils';
export const history = load<FetchLog>(rawHistory).history ?? {};
const content = load<{ history: DiffLog; commits: string[]; startTime: number }>(rawHistory);
export const history = content.history;
export const commits = content.commits;
export const startTime = toDate(content.startTime);
export type ISub = UserDiffLog['newSubmissions'][0];

@@ -36,2 +42,3 @@

for (const sub of userLog.newSubmissions) {
if (sub.creationTime < content.startTime) continue;
const d = toDay(sub.creationTime).value;

@@ -38,0 +45,0 @@ if (!groupByDay.has(d)) {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc