mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
5 lines
140 B
JavaScript
5 lines
140 B
JavaScript
function _isNativeFunction(fn) {
|
|
return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
}
|
|
|
|
module.exports = _isNativeFunction; |