1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

Only call startsWith if string

This commit is contained in:
Mel O'Hagan 2022-09-21 15:25:53 +01:00
parent 5e14479a8e
commit 6875554799

View file

@ -43,7 +43,7 @@
let helpers = handlebarsCompletions()
let getCaretPosition
let search = ""
let initialValueJS = value?.startsWith("{{ js ")
let initialValueJS = typeof value === "string" && value?.startsWith("{{ js ")
let mode = initialValueJS ? "JavaScript" : "Handlebars"
let jsValue = initialValueJS ? value : null
let hbsValue = initialValueJS ? null : value