summaryrefslogtreecommitdiff
path: root/packages/frontend/src/utility/haptic.ts
blob: 6f4706d2020c35d8aa0b91f554e23479294eb912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * SPDX-FileCopyrightText: syuilo and misskey-project
 * SPDX-License-Identifier: AGPL-3.0-only
 */

import { haptic as _haptic } from 'ios-haptics';
import { prefer } from '@/preferences.js';

export function haptic() {
	if (prefer.s['experimental.enableHapticFeedback']) {
		_haptic();
	}
}