
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
Get the prototype chain of an object or primitive as an Array.
I often write this function, figure I should extract it. There are probably other utilities out there that do this but I couldn't find them so they're either poorly named/described or the search algorithm is not being very helpful or I simply searched for the wrong things.
> npm install protochain
var protochain = require('protochain')
protochain({})
// => [Object.prototype]
protochain(Object.create(null))
// => []
protochain(new Error('message'))
// => [Error.prototype, Object.prototype]
protochain(new TypeError('message'))
// => [TypeError.prototype, Error.prototype, Object.prototype]
// Inheritance
function Person() {
}
function FancyPerson() {
Person.call(this)
}
FancyPerson.prototype = Object.create(Person.prototype)
protochain(new Person())
// => [Person.prototype, Object.prototype]
protochain(new FancyPerson())
// => [FancyPerson.prototype, Person.prototype, Object.prototype]
// Primitives are OK
protochain(123)
// => [Number.prototype, Object.prototype]
protochain('abc')
// => [String.prototype, Object.prototype]
protochain(/abc/)
// => [RegExp.prototype, Object.prototype]
protochain(true)
// => [Boolean.prototype, Object.prototype]
protochain(false)
// => [Boolean.prototype, Object.prototype]
// Null & Undefined === Empty List
protochain(null)
// => []
protochain(undefined)
// => []
protochain()
// => []
import protochain from 'protochain'
class Person {}
class FancyPerson extends Person {}
protochain(new Person())
// => [Person.prototype, Object.prototype]
protochain(new FancyPerson())
// => [FancyPerson.prototype, Person.prototype, Object.prototype])
MIT
FAQs
Get the prototype chain of any value as an Array
We found that protochain 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.