UNPKG

assert-function

Version:
8 lines (6 loc) 168 B
'use strict' module.exports = function assertFunction (value) { if (typeof value !== 'function') { throw new TypeError('Expected function, got: ' + value) } }