mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 18:52:50 +00:00
10 lines
200 B
JavaScript
10 lines
200 B
JavaScript
'use strict';
|
|
|
|
var toString = Object.prototype.toString
|
|
|
|
, id = toString.call(require('./noop'));
|
|
|
|
module.exports = function (f) {
|
|
return (typeof f === "function") && (toString.call(f) === id);
|
|
};
|