HOME


sh-3ll 1.0
DIR:/proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/arrify/
Upload File :
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];
};