interface Array<T> {
	/**
	 * @from `@dulysse1/better-node`
	 * ### Make a new exact copy of your array in memory
	 * @return your array copied.
	 */
	copy(): T[];
}

interface ReadonlyArray<T> {
	/**
	 * @from `@dulysse1/better-node`
	 * ### Make a new exact copy of your array in memory
	 * @return your array copied.
	 */
	copy(): T[];
}
