4 lines
101 B

"use strict";
module.exports = function isFunction(value) {
return value instanceof Function;
};