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

folquire

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

folquire - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

2

package.json
{
"name": "folquire",
"version": "1.0.1",
"version": "1.0.2",
"description": "Requires all the modules from a folder",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -31,5 +31,6 @@ ![Folquire banner](./assets/folquire.png)

const { join } = require('path')
const folquire = require('folquire')
const math = folquire(__dirname + '/math')
const math = folquire(join(__dirname, 'math'))

@@ -49,5 +50,6 @@ math.add(1, 2) // 2

const { join } = require('path')
const folquire = require('folquire')
folquire(__dirname + '/math')
folquire(join(__dirname, 'math'))
.then(math => {

@@ -66,7 +68,8 @@ math.add(1, 2) // 2

const { join } = require('path')
const folquire = require('folquire')
const modules = folquire(__dirname + '/math', {
const modules = folquire(join(__dirname, 'math'), {
ignore: ['add.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