dfcreative/mutype

View on GitHub
is-node-list.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = function(target){
    return typeof NodeList !== 'undefined' && target instanceof NodeList;
};