You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
724 B

2 years ago
'use strict';
class Helper {
constructor() {
this.store = {};
}
/**
* @returns {Object} - The plugin store
*/
list() {
return this.store;
}
/**
* Get helper plugin function by name
* @param {String} name - The name of the helper plugin
* @returns {Function}
*/
get(name) {
return this.store[name];
}
/**
* Register a helper plugin
* @param {String} name - The name of the helper plugin
* @param {Function} fn - The helper plugin function
*/
register(name, fn) {
if (!name) throw new TypeError('name is required');
if (typeof fn !== 'function') throw new TypeError('fn must be a function');
this.store[name] = fn;
}
}
module.exports = Helper;