登录 注册
当前位置:主页 > 资源下载 > 5 > 正则表达式函数regex-native-function:用于识别本机函数

正则表达式函数regex-native-function:用于识别本机函数

  • 更新:2024-06-22 14:39:50
  • 大小:9KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

本机功能 用于检测本机功能的。 安装 $ npm install regex-native-function 用法 var re = require ( 'regex-native-function' ) ; 关于 用于检测本机function 。 var bool = re . test ( Math . sqrt . toString ( ) ) ; // returns true bool = re . test ( ( function ( ) { } ) . toString ( ) ) ; // returns false 例子 var re = require ( 'regex-native-function' ) ; function isNative ( fcn ) { return re . test ( fcn . toString ( ) ) ; } c