zhangyong
2023-08-22 1353e87cb21a4032d585d7404bae9042f2ebcf08
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'use strict';
 
Object.defineProperty(exports, '__esModule', { value: true });
 
var lodashUnified = require('lodash-unified');
 
const unique = (arr) => [...new Set(arr)];
const castArray = (arr) => {
  if (!arr && arr !== 0)
    return [];
  return Array.isArray(arr) ? arr : [arr];
};
 
Object.defineProperty(exports, 'ensureArray', {
  enumerable: true,
  get: function () { return lodashUnified.castArray; }
});
exports.castArray = castArray;
exports.unique = unique;
//# sourceMappingURL=arrays.js.map