Protosaurus
Protosaurus in a basic proto object for custom class system. It's main feature is support of ES2015 object syntax and customizable inheritance strategies based on a new features of Symbol properties.
Install
Install via npm:
npm i protosaurus
Example
const Protosaurus = ; var A = Protosaurus; var B = A; var a = 'World';var b = 'World'; a; // => "Hello World"b; // => "Hi World"