getArrayVal.js 238 B

1234567
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. function getArrayVal(idxVal) {
  4. return Array.isArray(idxVal) ? idxVal : [idxVal];
  5. }
  6. exports.getArrayVal = getArrayVal;
  7. //# sourceMappingURL=getArrayVal.js.map