标签: javascript
在阅读以下Vuejs帮助器片段后,我感到非常困惑:
export function isPrimitive (value: any): boolean %checks { return ( typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean' ) }
静态类型检查来自哪里?
答案 0 :(得分:1)
这些是flow type annotations。