You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
504 B
21 lines
504 B
'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
|