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

colleqtor

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

colleqtor - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

12

colleqtor.js

@@ -49,2 +49,4 @@ const { version } = require('./package.json');

function gatherFileNames (dir, options = {}) {
checkOptions(options);
const { extension = null, stripDirPath = false } = options;

@@ -56,3 +58,3 @@

function getFileContent (filePathList, objMode = true, stripFileExtensions = true, baseDir = null) {
function getFileContents (filePathList, objMode = true, stripFileExtensions = true, baseDir = null) {
return filePathList.reduce((output, filePath) => {

@@ -95,9 +97,13 @@ const fullPath = path.resolve(baseDir || '', filePath);

gatherFileNames,
getFileContent,
getFileContents,
getFileContent: (...args) => {
zaq.warn('colleqtor.getFileContent is deprecated and will be removed. Please use .getFileContents (plural) instead.');
return getFileContents(...args);
},
collect,
requireAll,
require: (...args) => {
zaq.warn('colleqtor.require() is deprecated and will be removed in future versions of colleqtor. Please use colleqtor.requireAll() instead.')
zaq.warn('colleqtor.require() is deprecated and will be removed in future versions of colleqtor. Please use .requireAll() instead.')
return requireAll(...args);
}
};
{
"name": "colleqtor",
"version": "2.0.0",
"version": "2.0.1",
"description": "Seize the directory.",
"main": "colleqtor.js",
"scripts": {
"build": "uglifyjs colleqtor.js -o colleqtor.min.js"
},
"scripts": {},
"repository": {

@@ -10,0 +8,0 @@ "type": "git",

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