* Gets the number representing the kind based on the name * @param {String} name * @returns {Number} * @private
(name)
| 142 | * @private |
| 143 | */ |
| 144 | function getKindByName(name) { |
| 145 | if (!name) { |
| 146 | return kind.custom; |
| 147 | } |
| 148 | return kind[name.toLowerCase()]; |
| 149 | } |
| 150 | |
| 151 | module.exports = Index; |
no outgoing calls
no test coverage detected