Where can I find an example of a large JavaScript project using Crockford's method for prototypal inheritance?

Viewed 2362

I have read about Crockford's push for using JavaScript in a more obviously prototypal manner (cloning objects to create new ones, never using the "new" keyword). But in the wild, I have never seen anybody use this style for larger projects.

Where can I find examples of a large project that uses this style?

3 Answers
Related