mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-23 15:05:38 -06:00
6 lines
116 B
JavaScript
6 lines
116 B
JavaScript
function array(x) {
|
|
return typeof x === "object" && "length" in x ? x : Array.from(x);
|
|
}
|
|
export {
|
|
array as a
|
|
};
|