We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a1c3ad commit 5a375bfCopy full SHA for 5a375bf
src/core.ts
@@ -44,14 +44,6 @@ export function cloneDeep(data: object) {
44
return JSON.parse(JSON.stringify(data))
45
}
46
47
-export function getConfig(el: HTMLInputElement) {
48
- return JSON.parse(el.dataset.config as string) as Config
49
-}
50
-
51
-export function setConfig(el: HTMLInputElement, config: any) {
52
- el.dataset.config = JSON.stringify(config)
53
54
55
/**
56
* Creates a CustomEvent('input') with detail = { facade: true }
57
* used as a way to identify our own input event
0 commit comments