🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

cast-array

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

cast-array - npm Package Compare versions

Comparing version

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"
}
}