8000 fix: remove debugger statements · brysem/nativescript-vue@6d0f954 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 6d0f954

Browse files
committed
fix: remove debugger statements
1 parent 2346a32 commit 6d0f954

File tree

1 file changed

+1
-2
lines changed
  • platform/nativescript/compiler/directives

1 file changed

+1
-2
lines changed

platform/nativescript/compiler/directives/model.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ export default function model(el, dir) {
1010
}
1111

1212
function genViewComponentModel(el, value, modifiers) {
13-
debugger
1413
const { number, trim } = modifiers || {}
1514
const { prop } = getViewMeta(el.tag).model
1615

@@ -30,6 +29,6 @@ function genViewComponentModel(el, value, modifiers) {
3029
el.model = {
3130
value: `(${value})`,
3231
expression: JSON.stringify(value),
33-
callback: `function (${baseValueExpression}) {debugger;${assignment}}`
32+
callback: `function (${baseValueExpression}) {${assignment}}`
3433
}
3534
}

0 commit comments

Comments
 (0)
0