UNPKG

@nathanfaucett/parallel

Version:

parallel for the browser and node.js

9 lines (7 loc) 209 B
var isFunction = require("@nathanfaucett/is_function"); module.exports = throwIfNotFunction; function throwIfNotFunction(value) { if (!isFunction(value)) { throw new Error("tasks must be functions"); } }