UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

9 lines 202 B
/** * Returns a copy without any duplicate elements * @template T * @param {T[]} input * @return {T[]} */ export function array_deduplicate(input) { return Array.from(new Set(input)); }