| DIR:/proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/arrify/ |
| Current File : //proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/arrify/index.js |
'use strict';
module.exports = function (val) {
if (val === null || val === undefined) {
return [];
}
return Array.isArray(val) ? val : [val];
};
|