我想构建一个工具来帮助我在项目中更快地完成工作。为此,我想使用片段功能。是否可以知道是否在字符串引号或常规 javascript 代码中使用了片段前缀,例如:
'prefix + tab' (with quotes) -> outputs one thing
prefix + tab (no quotes) -> outputs different thing.
以便:
'bgc + tab' -> 'background-color: $1'
prefix + tab -> backgroundColor: $1
我希望我的问题有意义:D