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

appcache-glob

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appcache-glob - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

13

appcache.js

@@ -133,5 +133,14 @@ var async = require("async");

options.cwd = this._options.cwd;
file = file.replace(/^\//, "");
}
glob(file, options, callback);
glob(file, options, function(err, files) {
if (files) {
files = files.map(function(file) {
return "/" + file;
});
}
callback(err, files);
});
}

@@ -155,3 +164,3 @@ },

async.each(Object.keys(this._data), function(key, callback) {
async.concat(self._data[key], function(file, callback) {
async.concatSeries(self._data[key], function(file, callback) {
self._glob(file, callback);

@@ -158,0 +167,0 @@ }, function(err, files) {

2

package.json
{
"name": "appcache-glob",
"version": "0.0.1",
"version": "0.0.2",
"description": "",

@@ -5,0 +5,0 @@ "main": "appcache.js",

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