"use strict"; module.exports = function createWrapper(func) { return function (...params) { return this._source[func](...params); }; };