美文网首页
vue Vue.isPrimitive

vue Vue.isPrimitive

作者: 余带盐 | 来源:发表于2018-08-06 11:36 被阅读0次

    检查是否是基本类型,非对象

    /**
    * Check if value is primitive
    */
    function isPrimitive (value) {
     return (
       typeof value === 'string' ||
       typeof value === 'number' ||
       // $flow-disable-line
       typeof value === 'symbol' ||
       typeof value === 'boolean'
     )
    }
    

    相关文章

      网友评论

          本文标题:vue Vue.isPrimitive

          本文链接:https://www.haomeiwen.com/subject/xcvwvftx.html