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