UNPKG

three

Version:

JavaScript 3D library

16 lines (9 loc) 217 B
class NodeCode { constructor( name, type, code = '' ) { this.name = name; this.type = type; this.code = code; Object.defineProperty( this, 'isNodeCode', { value: true } ); } } export default NodeCode;