mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-24 15:35:45 -06:00
7 lines
107 B
JavaScript
7 lines
107 B
JavaScript
|
function t(r) {
|
||
|
return typeof r == "object" && "length" in r ? r : Array.from(r);
|
||
|
}
|
||
|
export {
|
||
|
t as a
|
||
|
};
|