File src/de/jandankert/jscriptbox/standard/ArrayWrapper.java

Last commit: Sat May 30 23:22:58 2026 +0200	Jan Dankert	Refactoring package openrat->jandankert because the maven artefact is in namespace de.jandankert
1 2 package de.jandankert.jscriptbox.standard; 3 4 import de.jandankert.jscriptbox.context.BaseScriptable; 5 6 public class ArrayWrapper extends BaseScriptable 7 { 8 /* 9 public function of() { 10 11 return func_get_args(); 12 } 13 14 15 16 17 public function fill( value,start,count) 18 { 19 return array_fill( value,start,count ); 20 } 21 22 23 public function isArray( val ) 24 { 25 return is_array( val ); 26 } 27 */ 28 29 public String toString() 30 { 31 return "Array"; 32 } 33 34 }
Download src/de/jandankert/jscriptbox/standard/ArrayWrapper.java
History Sat, 30 May 2026 23:22:58 +0200 Jan Dankert Refactoring package openrat->jandankert because the maven artefact is in namespace de.jandankert