* Returns whether or not the nodes are part of an ES6 module import. * * @param {Node[]} nodes * @returns {boolean}
(nodes)
| 143 | * @returns {boolean} |
| 144 | */ |
| 145 | static isES6ModuleImport(nodes) { |
| 146 | return nodes[0] && nodes[0].type === 'ImportDeclaration'; |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * Returns whether or not the nodes belong to class boilerplate. |
no outgoing calls
no test coverage detected