From 7a097d1b834ab4688dfe46fe28e78592a4d05a7c Mon Sep 17 00:00:00 2001 From: Philipp Fritsche Date: Tue, 9 Aug 2022 14:48:14 +0000 Subject: [PATCH] remove unused method --- src/document/UI.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/document/UI.ts b/src/document/UI.ts index 438fe9e1..4b60e04f 100644 --- a/src/document/UI.ts +++ b/src/document/UI.ts @@ -30,13 +30,6 @@ export function isUISelectionStart( return !!start && typeof start === 'object' && UISelection in start } -export function setUIValueRaw( - element: HTMLInputElement | HTMLTextAreaElement, - value: string, -) { - element[UIValue] = value -} - export function setUIValue( element: HTMLInputElement | HTMLTextAreaElement, value: string,