LendAndRegret/node_modules/es-toolkit/dist/compat/_internal/toArray.js
2026-05-02 17:27:43 +08:00

10 lines
206 B
JavaScript

'use strict';
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
function toArray(value) {
return Array.isArray(value) ? value : Array.from(value);
}
exports.toArray = toArray;