dleitee/valid.js

View on GitHub
src/lib/array.js

Summary

Maintainability
A
0 mins
Test Coverage
export const _isArray = value => {
    return (value !== null &&
        value.length >= 0 &&
        Object.prototype.toString.call(value) === '[object Array]');
};