short-url/public/vendor/jvectormap/lib/ordinal-scale.js

7 lines
147 B
JavaScript
Raw Permalink Normal View History

2020-07-01 08:57:45 +00:00
jvm.OrdinalScale = function(scale){
this.scale = scale;
};
jvm.OrdinalScale.prototype.getValue = function(value){
return this.scale[value];
};