mirror of
https://github.com/thangisme/notes.git
synced 2024-10-31 22:37:27 -04:00
9 lines
152 B
JavaScript
9 lines
152 B
JavaScript
'use strict';
|
|
module.exports = function (val) {
|
|
if (val === null || val === undefined) {
|
|
return [];
|
|
}
|
|
|
|
return Array.isArray(val) ? val : [val];
|
|
};
|