NAME Data.Dump - Dump any variable as a string SYNOPSIS var obj = new Object; obj['key'] = 'value'; obj['array'] = new Array("one","two","three"); alert( Dump(obj) ) DESCRIPTION This module is an implemetation of the Data::Dump perl module in JavaScript. It provides a "Dump" method which takes a series of arguments and produces a string that can be later "eval"ed in order to produce a deep copy of the original variables. BUGS Dumping DOM elements will fail SEE ALSO "JSAN" AUTHORS The "Data.Dump" JavaScript module is written by Kevin Jones , based on "Data::Dump" by Gisle Aas , based on "Data::Dumper" by Gurusamy Sarathy . COPYRIGHT Copyright 2007 Kevin Jones. Copyright 1998-2000,2003-2004 Gisle Aas. Copyright 1996-1998 Gurusamy Sarathy. This program is free software; you can redistribute it and/or modify it under the terms of the Perl Artistic License See http://www.perl.com/perl/misc/Artistic.html