-
正则表达式函数regex-native-function:用于识别本机函数
资源介绍
本机功能
用于检测本机功能的。
安装
$ 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
- 上一篇: 前端开源库-regex-iso-date
- 下一篇: C#中DateTime.Now函数详解