balena-cli/lib/plugin-loader/plugin-loader.coffee

9 lines
182 B
CoffeeScript

_ = require('lodash')
resin = require('../resin')
exports.use = (plugin) ->
if not _.isFunction(plugin)
throw new Error('Plugin should be a function')
plugin.call(null, resin)