Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
prostore.glob-utils
Advanced tools
#Index
Modules
Typedefs
#prostore.glob-utils
Lookup files in cwd
directory matching glob pattern
.
Usage:
var glob = require('prostore.glob-utils');
glob('base/directory', 'glob/pattern/*', function(err, files) {
// ...
});
Dot-files (i.e. starting with dot) are not returned as per glob
module.
Directories are not returned either.
Params
string
- (current work directory) a directory where lookup is
performed; this path is also stripped from resulting file paths.string
- glob patternfunction
- callback function(err, files)
,
where files
is an array of GlobFile##glob-utils.diff(src, dst) Compares two lists of file descriptors yielding four arrays:
added
— files existing in src
but missing in dst
removed
— files existing in dst
but missing in src
modified
— files existing in both src
and dst
but with different md5
unmodified
— files with equal content in both src
and dst
Usage:
var diff = glob.diff(oldFiles, newFiles);
// diff.added
// diff.removed
// diff.modified
// diff.unmodified
Params
Array.<GlobFile>
Array.<GlobFile>
#type: GlobFile File descriptor object.
Example:
{
path: 'path/to/file/relative/to/cwd',
mtime: 1234567890,
md5: 'd41d8cd98f00b204e9800998ecf8427e'
}
Properties
string
- path relative to cwd
number
- last modification timestampstring
- md5 hash of file contentType: object
FAQs
Glob Utilities
The npm package prostore.glob-utils receives a total of 2 weekly downloads. As such, prostore.glob-utils popularity was classified as not popular.
We found that prostore.glob-utils demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.