Socket
Socket
Sign inDemoInstall

cast-array

Package Overview
Dependencies
1
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.0 to 1.0.1

4

index.js
'use strict'
var isArray = require('isarray')
module.exports = function castArray (value) {
return Array.isArray(value) ? value : [value]
return isArray(value) ? value : [value]
}
{
"name": "cast-array",
"main": "index.js",
"version": "1.0.0",
"version": "1.0.1",
"description": "Ensure a value is an array and wrap it if it is not an array",

@@ -27,3 +27,6 @@ "license": "MIT",

"index.js"
]
],
"dependencies": {
"isarray": "0.0.1"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc