mirror of
https://github.com/supanadit/short-url.git
synced 2024-11-15 05:02:20 +00:00
7 lines
147 B
JavaScript
7 lines
147 B
JavaScript
|
jvm.OrdinalScale = function(scale){
|
||
|
this.scale = scale;
|
||
|
};
|
||
|
|
||
|
jvm.OrdinalScale.prototype.getValue = function(value){
|
||
|
return this.scale[value];
|
||
|
};
|