dd1783f984
* Disable `import/no-default-export` properly * Disable `import/no-default-export`
9 lines
264 B
TypeScript
9 lines
264 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { secureRndstr } from '@/misc/secure-rndstr.js';
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default () => secureRndstr(16);
|