(obj)
| 1228 | }; |
| 1229 | |
| 1230 | var ArrayIsArray = function (obj) { |
| 1231 | try { |
| 1232 | return str.call(obj) === "[object Array]"; |
| 1233 | } |
| 1234 | catch(e) { |
| 1235 | return false; |
| 1236 | } |
| 1237 | }; |
| 1238 | |
| 1239 | module.exports = { |
| 1240 | isArray: ArrayIsArray, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…