mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-23 15:05:38 -06:00
17 lines
219 B
JavaScript
17 lines
219 B
JavaScript
|
function t(e, a) {
|
||
|
switch (arguments.length) {
|
||
|
case 0:
|
||
|
break;
|
||
|
case 1:
|
||
|
this.range(e);
|
||
|
break;
|
||
|
default:
|
||
|
this.range(a).domain(e);
|
||
|
break;
|
||
|
}
|
||
|
return this;
|
||
|
}
|
||
|
export {
|
||
|
t as i
|
||
|
};
|