This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zaloguj się
ShariX
/
converse-built
Obserwuj
3
Polub
0
Forkuj
0
Pliki
Problemy
0
Oczekujące zmiany
0
Wiki
Gałąź:
unstable
Gałęzie
Tagi
master
unstable
converse-built
/
node_modules
/
array-ify
/
index.js
index.js
93 B
Bezpośredni odnośnik
Historia
Czysty
1
2
3
4
'use strict';
module.exports = function(val) {
return Array.isArray(val) ? val : [val];
};