Socket
Socket
Sign inDemoInstall

jest-haste-map

Package Overview
Dependencies
Maintainers
4
Versions
273
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jest-haste-map - npm Package Compare versions

Comparing version 14.0.0 to 14.1.0

16

build/crawlers/node.js

@@ -105,9 +105,12 @@ /**

let count = lines.length;
lines.forEach(path => {
fs.stat(path, (err, stat) => {
if (!err && stat) {
result.push([path, stat.mtime.getTime()]);}
if (!count) {
callback([]);} else
{
lines.forEach(path => {
fs.stat(path, (err, stat) => {
if (!err && stat) {
result.push([path, stat.mtime.getTime()]);}
if (--count === 0) {
callback(result);}});});});}
if (--count === 0) {
callback(result);}});});}});}

@@ -119,2 +122,3 @@

module.exports = function nodeCrawl(

@@ -121,0 +125,0 @@ roots,

{
"name": "jest-haste-map",
"version": "14.0.0",
"version": "14.1.0",
"repository": {

@@ -22,3 +22,6 @@ "type": "git",

"test": "../../packages/jest-cli/bin/jest.js"
},
"devDependencies": {
"pretty-format": "^3.5.0"
}
}
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