Files
dndmaster/backend/node_modules/isarray/index.js
T
Marces Zastrow e498ac886e + Test
Added a test programm to upload images for characters
2025-01-09 13:19:38 +01:00

6 lines
132 B
JavaScript

var toString = {}.toString;
module.exports = Array.isArray || function (arr) {
return toString.call(arr) == '[object Array]';
};