New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

aocrunner

Package Overview
Dependencies
Maintainers
1
Versions
88
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aocrunner - npm Package Compare versions

Comparing version 1.9.2 to 1.9.3

6

lib/utils/getDayData.js
import path from "path";
import os from "os";
const getFilesTrace = () => {
var _a;
return (_a = new Error().stack) == null ? void 0 : _a.match(
/((?<=file:\/\/).*\.(m?)js)|([A-Z]:\\.*\.(m?)js)/gm
);
const regex = os.platform() === "win32" ? /[A-Z]:\\.*\.(m?)js/gm : /(?<=file:\/\/).*\.(m?)js/gm;
return (_a = new Error().stack) == null ? void 0 : _a.match(regex);
};

@@ -8,0 +8,0 @@ const getDayData = () => {

@@ -1,2 +0,2 @@

declare const _default: "1.9.2";
declare const _default: "1.9.3";
export default _default;

@@ -1,4 +0,4 @@

var version_default = "1.9.2";
var version_default = "1.9.3";
export {
version_default as default
};
{
"name": "aocrunner",
"version": "1.9.2",
"version": "1.9.3",
"repository": "https://github.com/caderek/aocrunner",

@@ -5,0 +5,0 @@ "description": "Advent of Code runner",

import path from "path"
import os from "os"
const getFilesTrace = () => {
return new Error().stack?.match(
/((?<=file:\/\/).*\.(m?)js)|([A-Z]:\\.*\.(m?)js)/gm,
)
const regex =
os.platform() === "win32"
? /[A-Z]:\\.*\.(m?)js/gm
: /(?<=file:\/\/).*\.(m?)js/gm
return new Error().stack?.match(regex)
}

@@ -8,0 +12,0 @@

/* This file is auto-generated - do not modify */
export default "1.9.2"
export default "1.9.3"
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