Files
2026-04-13 09:30:59 +08:00

10 lines
164 B
JavaScript

'use strict';
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
function uniq(arr) {
return [...new Set(arr)];
}
exports.uniq = uniq;