Files
miniapp_qr_portable_bundle/js/@babel/runtime/helpers/toConsumableArray.js
Logic 29d1ad71ab
Some checks failed
docker-cicd / build-and-push (push) Failing after 16s
Initial commit
2026-03-21 18:47:00 +08:00

9 lines
412 B
JavaScript

var arrayWithoutHoles = require("./arrayWithoutHoles"),
iterableToArray = require("./iterableToArray"),
unsupportedIterableToArray = require("./unsupportedIterableToArray"),
nonIterableSpread = require("./nonIterableSpread");
function _toConsumableArray(r) {
return arrayWithoutHoles(r) || iterableToArray(r) || unsupportedIterableToArray(r) || nonIterableSpread()
}
module.exports = _toConsumableArray;