Vuejs源代码中的静态类型检查

时间:2017-10-23 03:18:16

标签: javascript

在阅读以下Vuejs帮助器片段后,我感到非常困惑:

export function isPrimitive (value: any): boolean %checks {
  return (
    typeof value === 'string' ||
    typeof value === 'number' ||
    typeof value === 'boolean'
  )
}

静态类型检查来自哪里?

1 个答案:

答案 0 :(得分:1)

这些是flow type annotations