
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
get-array-types
Advanced tools
Get a beautiful string representation of types inside of an Array.
To be completely fair, none. I needed a tiny, zero dependency package for a project that would do this, so I decided to create one.
Simply run
npm install --save get-array-types
const ArrayTypes = require('get-array-types')
console.log(ArrayTypes([1, 2, 3, 'Hello', 'World']).toString())
//=> Array<number|string>
console.log(ArrayTypes([1, 'Hello', 2, 'World']).elementTypes())
//=> ['number', 'string']
console.log(ArrayTypes([1, 2, 3]).isOfSingleType())
//=> true
console.log(ArrayTypes([1, 2, 'Oops.']).isOfSingleType())
//=> false
get-array-types also provides a useful utility function, isArray.
Use it as follows:
const isArray = require('get-array-types').isArray
console.log(isArray('Hello World.'))
//=> false
console.log(isArray([1, 2, 3]))
//=> true
Happy Javascripting! 〰️
FAQs
Get a beautiful representation of values in an Array.
We found that get-array-types demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.