UNPKG

three

Version:

JavaScript 3D library

15 lines (8 loc) 201 B
class NodeAttribute { constructor( name, type ) { this.name = name; this.type = type; Object.defineProperty( this, 'isNodeAttribute', { value: true } ); } } export default NodeAttribute;