mirror of
				https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
				synced 2024-07-29 21:57:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			369 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			369 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| const withIs = require('../../..');
 | |
| const Plant = require('./Plant');
 | |
| 
 | |
| function Algae() {
 | |
|     Plant.call(this, 'algae');
 | |
| }
 | |
| 
 | |
| Algae.prototype = Object.create(Plant.prototype);
 | |
| Algae.prototype.constructor = Algae;
 | |
| 
 | |
| module.exports = withIs.proto(Algae, {
 | |
|     className: 'Algae',
 | |
|     symbolName: '@org/package/Algae',
 | |
| });
 | |
| module.exports.WrappedClass = Algae;
 | 
