mirror of
https://github.com/natipt/obsidian-zhongwen-reader.git
synced 2026-07-22 12:30:27 +00:00
5 lines
104 B
JavaScript
5 lines
104 B
JavaScript
'use strict';
|
|
|
|
module.exports = (...arguments_) => {
|
|
return [...new Set([].concat(...arguments_))];
|
|
};
|