mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 06:14:36 +00:00
15 lines
343 B
Haxe
15 lines
343 B
Haxe
package funkin.util.tools;
|
|
|
|
class DynamicTools
|
|
{
|
|
/**
|
|
* Creates a full clone of the input `Dynamic`. Only guaranteed to work on anonymous structures.
|
|
* @param input The `Dynamic` to clone.
|
|
* @return A clone of the input `Dynamic`.
|
|
*/
|
|
public static function clone(input:Dynamic):Dynamic
|
|
{
|
|
return Reflect.copy(input);
|
|
}
|
|
}
|