Dustin Sun
Dustin Sun

Reputation: 5532

NodeJS Object.subClass()

Check the source code at Github. It reads peer5.core.dataStructures.DoublyLinkedList = Object.subClass({...})

I checked JS Object API but could not find Object.subClass method. And I coudld not find declaration of the method in the repo. Is it a NodeJS thing?

Upvotes: 1

Views: 77

Answers (1)

Paul
Paul

Reputation: 141827

No, it's not a NodeJS thing. It is defined in that repo in the file lang_ext.js .

Upvotes: 1

Related Questions