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