.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / arrify / index.js
1 'use strict';
2 module.exports = function (val) {
3         if (val === null || val === undefined) {
4                 return [];
5         }
6
7         return Array.isArray(val) ? val : [val];
8 };