ouroboros-group/mybulma/node_modules/arrify/index.js

9 lines
152 B
JavaScript
Raw Normal View History

2023-07-30 18:21:54 -06:00
'use strict';
module.exports = function (val) {
if (val === null || val === undefined) {
return [];
}
return Array.isArray(val) ? val : [val];
};