mirror of
https://github.com/supanadit/short-url.git
synced 2024-11-14 20:52:21 +00:00
7 lines
133 B
JavaScript
7 lines
133 B
JavaScript
|
jvm.SimpleScale = function(scale){
|
||
|
this.scale = scale;
|
||
|
};
|
||
|
|
||
|
jvm.SimpleScale.prototype.getValue = function(value){
|
||
|
return value;
|
||
|
};
|