astro-ghostcms/.pnpm-store/v3/files/81/568e44958d96a91c59b87d9fcbe...

9 lines
152 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'use strict';
module.exports = function (val) {
if (val === null || val === undefined) {
return [];
}
return Array.isArray(val) ? val : [val];
};