Getting started
Install Protoblast using npm
npm install protoblast
Then require it in your javascript project
require('protoblast')(true);
Protoblast will now have extended your native objects with new methods, and added a few new global classes like Deck, Iterator and Informer:
// Array.cast will be a new static function
Array.cast('string');>>> ['string']
// New methods will also be added
var arr = [1, 2, 3];
arr.sum();>>> 6
// You can also instantiate these new added classes
var i = new Informer();