mirror of
https://github.com/jorgevasquezp/AFX_yTools.git
synced 2026-09-16 19:22:42 +00:00
Got the old tools into git
This commit is contained in:
Executable
+17
@@ -0,0 +1,17 @@
|
||||
if (Array.prototype.getOne==null) Array.prototype.getOne=function(item){ //Extends the Array class with the getOne functions wich
|
||||
var val = -1;
|
||||
for(i=0;i<=this.length;i++){
|
||||
if(this[i]==item){
|
||||
var val = i;
|
||||
}
|
||||
}
|
||||
return val;
|
||||
}
|
||||
function yFactor(n,f){
|
||||
if((typeof(n)=='number'&&typeof(f)=='number')&&(n>f)){
|
||||
value = n - (n%f);
|
||||
return(value);
|
||||
}else{
|
||||
alert('error');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user